From owner-svn-src-stable@FreeBSD.ORG Thu Feb 18 10:55:42 2010 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F08BF106566C; Thu, 18 Feb 2010 10:55:42 +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 DF31C8FC14; Thu, 18 Feb 2010 10:55:42 +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 o1IAtgJL042828; Thu, 18 Feb 2010 10:55:42 GMT (envelope-from brucec@svn.freebsd.org) Received: (from brucec@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o1IAtgXJ042826; Thu, 18 Feb 2010 10:55:42 GMT (envelope-from brucec@svn.freebsd.org) Message-Id: <201002181055.o1IAtgXJ042826@svn.freebsd.org> From: Bruce Cran Date: Thu, 18 Feb 2010 10:55:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r204036 - stable/8/lib/libc/net X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Feb 2010 10:55:43 -0000 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);