Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 17180 invoked by uid 500); 17 May 2002 17:54:13 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 17169 invoked from network); 17 May 2002 17:54:13 -0000 Date: 17 May 2002 17:54:12 -0000 Message-ID: <20020517175412.2005.qmail@icarus.apache.org> From: jerenkrantz@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/network_io/unix sockopt.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N jerenkrantz 02/05/17 10:54:12 Modified: network_io/unix sockopt.c Log: Remove a few stray tabs. (No code changes, but anyone reading this code needs psychiatric help.) Revision Changes Path 1.51 +7 -7 apr/network_io/unix/sockopt.c Index: sockopt.c =================================================================== RCS file: /home/cvs/apr/network_io/unix/sockopt.c,v retrieving revision 1.50 retrieving revision 1.51 diff -u -r1.50 -r1.51 --- sockopt.c 13 Mar 2002 20:39:25 -0000 1.50 +++ sockopt.c 17 May 2002 17:54:12 -0000 1.51 @@ -203,12 +203,12 @@ } } } - /* must disable the incomplete read support if we change to a - * blocking socket. - */ - if (on == 0) { - sock->netmask &= ~APR_INCOMPLETE_READ; - } + /* must disable the incomplete read support if we change to a + * blocking socket. + */ + if (on == 0) { + sock->netmask &= ~APR_INCOMPLETE_READ; + } sock->timeout = on; apr_set_option(&sock->netmask, APR_SO_TIMEOUT, on); } @@ -273,7 +273,7 @@ #endif } if (opt & APR_INCOMPLETE_READ) { - apr_set_option(&sock->netmask, APR_INCOMPLETE_READ, on); + apr_set_option(&sock->netmask, APR_INCOMPLETE_READ, on); } return APR_SUCCESS;