From owner-svn-src-all@FreeBSD.ORG Wed Feb 24 22:02:27 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9B20106566B; Wed, 24 Feb 2010 22:02:25 +0000 (UTC) (envelope-from brucec@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9DC148FC16; Wed, 24 Feb 2010 22:02:25 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o1OM2PJl017461; Wed, 24 Feb 2010 22:02:25 GMT (envelope-from brucec@svn.freebsd.org) Received: (from brucec@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o1OM2PO5017456; Wed, 24 Feb 2010 22:02:25 GMT (envelope-from brucec@svn.freebsd.org) Message-Id: <201002242202.o1OM2PO5017456@svn.freebsd.org> From: Bruce Cran Date: Wed, 24 Feb 2010 22:02:25 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r204291 - stable/7/lib/libc/net X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Feb 2010 22:02:27 -0000 Author: brucec Date: Wed Feb 24 22:02:25 2010 New Revision: 204291 URL: http://svn.freebsd.org/changeset/base/204291 Log: MFC r203322: Fix typo of ENOTCONN. Add missing RETURN VALUES section in sctp_opt_info(3). Approved by: rrs (mentor) Modified: stable/7/lib/libc/net/sctp_opt_info.3 stable/7/lib/libc/net/sctp_recvmsg.3 stable/7/lib/libc/net/sctp_send.3 stable/7/lib/libc/net/sctp_sendmsg.3 Directory Properties: stable/7/lib/libc/ (props changed) stable/7/lib/libc/stdtime/ (props changed) Modified: stable/7/lib/libc/net/sctp_opt_info.3 ============================================================================== --- stable/7/lib/libc/net/sctp_opt_info.3 Wed Feb 24 22:00:00 2010 (r204290) +++ stable/7/lib/libc/net/sctp_opt_info.3 Wed Feb 24 22:02:25 2010 (r204291) @@ -87,6 +87,8 @@ socket options. .Dv SCTP_PEER_AUTH_CHUNKS .Pp .Dv SCTP_LOCAL_AUTH_CHUNKS +.Sh RETURN VALUES +The call returns 0 on success and -1 upon error. .Sh ERRORS The .Fn sctp_opt_info Modified: stable/7/lib/libc/net/sctp_recvmsg.3 ============================================================================== --- stable/7/lib/libc/net/sctp_recvmsg.3 Wed Feb 24 22:00:00 2010 (r204290) +++ stable/7/lib/libc/net/sctp_recvmsg.3 Wed Feb 24 22:02:25 2010 (r204291) @@ -269,7 +269,7 @@ This generally indicates that the interf but may be caused by transient congestion. .It Bq Er EHOSTUNREACH The remote host was unreachable. -.It Bq Er ENOTCON +.It Bq Er ENOTCONN On a one-to-one style socket no association exists. .It Bq Er ECONNRESET An abort was received by the stack while the user was Modified: stable/7/lib/libc/net/sctp_send.3 ============================================================================== --- stable/7/lib/libc/net/sctp_send.3 Wed Feb 24 22:00:00 2010 (r204290) +++ stable/7/lib/libc/net/sctp_send.3 Wed Feb 24 22:02:25 2010 (r204291) @@ -319,7 +319,7 @@ This generally indicates that the interf but may be caused by transient congestion. .It Bq Er EHOSTUNREACH The remote host was unreachable. -.It Bq Er ENOTCON +.It Bq Er ENOTCONN On a one-to-one style socket no association exists. .It Bq Er ECONNRESET An abort was received by the stack while the user was Modified: stable/7/lib/libc/net/sctp_sendmsg.3 ============================================================================== --- stable/7/lib/libc/net/sctp_sendmsg.3 Wed Feb 24 22:00:00 2010 (r204290) +++ stable/7/lib/libc/net/sctp_sendmsg.3 Wed Feb 24 22:02:25 2010 (r204291) @@ -296,7 +296,7 @@ This generally indicates that the interf but may be caused by transient congestion. .It Bq Er EHOSTUNREACH The remote host was unreachable. -.It Bq Er ENOTCON +.It Bq Er ENOTCONN On a one-to-one style socket no association exists. .It Bq Er ECONNRESET An abort was received by the stack while the user was