From owner-svn-src-head@freebsd.org Sun May 20 21:56:09 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B0D39EF1505; Sun, 20 May 2018 21:56:09 +0000 (UTC) (envelope-from sevan@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 630D072D97; Sun, 20 May 2018 21:56:09 +0000 (UTC) (envelope-from sevan@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3FDD51C198; Sun, 20 May 2018 21:56:09 +0000 (UTC) (envelope-from sevan@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4KLu9Td097167; Sun, 20 May 2018 21:56:09 GMT (envelope-from sevan@FreeBSD.org) Received: (from sevan@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4KLu90V097166; Sun, 20 May 2018 21:56:09 GMT (envelope-from sevan@FreeBSD.org) Message-Id: <201805202156.w4KLu90V097166@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sevan set sender to sevan@FreeBSD.org using -f From: Sevan Janiyan Date: Sun, 20 May 2018 21:56:09 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r333943 - head/lib/libc/sys X-SVN-Group: head X-SVN-Commit-Author: sevan X-SVN-Commit-Paths: head/lib/libc/sys X-SVN-Commit-Revision: 333943 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2018 21:56:09 -0000 Author: sevan (doc committer) Date: Sun May 20 21:56:08 2018 New Revision: 333943 URL: https://svnweb.freebsd.org/changeset/base/333943 Log: Use St macro for specifying C standards. Reported by: rgrimes@ Modified: head/lib/libc/sys/recv.2 Modified: head/lib/libc/sys/recv.2 ============================================================================== --- head/lib/libc/sys/recv.2 Sun May 20 21:37:34 2018 (r333942) +++ head/lib/libc/sys/recv.2 Sun May 20 21:56:08 2018 (r333943) @@ -198,7 +198,11 @@ If no data is available, .Va errno is set to .Er EAGAIN . -This flag is not available in strict ANSI or C99 compilation mode. +This flag is not available in +.St -ansiC +or +.St -isoC-99 +compilation mode. The .Dv MSG_WAITFORONE flag sets MSG_DONTWAIT after the first message has been received.