svn commit: r204292 - stable/7/lib/libc/net

Bruce Cran brucec at FreeBSD.org
Wed Feb 24 22:04:50 UTC 2010


Author: brucec
Date: Wed Feb 24 22:04:49 2010
New Revision: 204292
URL: http://svn.freebsd.org/changeset/base/204292

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

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

Modified: stable/7/lib/libc/net/sctp_sys_calls.c
==============================================================================
--- stable/7/lib/libc/net/sctp_sys_calls.c	Wed Feb 24 22:02:25 2010	(r204291)
+++ stable/7/lib/libc/net/sctp_sys_calls.c	Wed Feb 24 22:04:49 2010	(r204292)
@@ -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-7 mailing list