Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 950 invoked from network); 23 Mar 2011 19:13:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 23 Mar 2011 19:13:35 -0000 Received: (qmail 54830 invoked by uid 500); 23 Mar 2011 18:13:51 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 54793 invoked by uid 500); 23 Mar 2011 18:13:51 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 54786 invoked by uid 99); 23 Mar 2011 18:13:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Mar 2011 18:13:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Mar 2011 18:13:49 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A8AFD23888CE; Wed, 23 Mar 2011 18:13:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1084659 - /apr/apr/trunk/network_io/unix/sockets.c Date: Wed, 23 Mar 2011 18:13:27 -0000 To: commits@apr.apache.org From: trawick@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110323181327.A8AFD23888CE@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: trawick Date: Wed Mar 23 18:13:27 2011 New Revision: 1084659 URL: http://svn.apache.org/viewvc?rev=1084659&view=rev Log: fix typo in comment Modified: apr/apr/trunk/network_io/unix/sockets.c Modified: apr/apr/trunk/network_io/unix/sockets.c URL: http://svn.apache.org/viewvc/apr/apr/trunk/network_io/unix/sockets.c?rev=1084659&r1=1084658&r2=1084659&view=diff ============================================================================== --- apr/apr/trunk/network_io/unix/sockets.c (original) +++ apr/apr/trunk/network_io/unix/sockets.c Wed Mar 23 18:13:27 2011 @@ -268,7 +268,7 @@ apr_status_t apr_socket_accept(apr_socke /* Set up socket variables -- note that it may be possible for * *new to be an AF_INET socket when sock is AF_INET6 in some - * dual-stack configurations, so ensure the the remote_/local_addr + * dual-stack configurations, so ensure that the remote_/local_addr * structures are adjusted for the family of the accepted * socket: */ set_socket_vars(*new, sa.sa.sin.sin_family, SOCK_STREAM, sock->protocol);