svn commit: r204036 - stable/8/lib/libc/net

Bruce Cran brucec at FreeBSD.org
Thu Feb 18 10:55:43 UTC 2010


Author: brucec
Date: Thu Feb 18 10:55:42 2010
New Revision: 204036
URL: http://svn.freebsd.org/changeset/base/204036

Log:
  MFC r203323:
  
  Remove extra semicolon.
  
  Approved by:	rrs (mentor)

Modified:
  stable/8/lib/libc/net/sctp_sys_calls.c
Directory Properties:
  stable/8/lib/libc/   (props changed)
  stable/8/lib/libc/stdtime/   (props changed)

Modified: stable/8/lib/libc/net/sctp_sys_calls.c
==============================================================================
--- stable/8/lib/libc/net/sctp_sys_calls.c	Thu Feb 18 10:51:31 2010	(r204035)
+++ stable/8/lib/libc/net/sctp_sys_calls.c	Thu Feb 18 10:55:42 2010	(r204036)
@@ -784,7 +784,7 @@ sctp_sendx(int sd, const void *msg, size
 	free(buf);
 	if (ret != 0) {
 		if (errno == EALREADY) {
-			no_end_cx = 1;;
+			no_end_cx = 1;
 			goto continue_send;
 		}
 		return (ret);


More information about the svn-src-stable mailing list