]> granicus.if.org Git - apache/commitdiff
drop a brace inside #if 0 so emacs can indent properly
authorDoug MacEachern <dougm@apache.org>
Wed, 8 Aug 2001 02:10:51 +0000 (02:10 +0000)
committerDoug MacEachern <dougm@apache.org>
Wed, 8 Aug 2001 02:10:51 +0000 (02:10 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90023 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_io.c

index e275b46ef94b074e22b736a0374fa6d5fcec88db..2b1a4fe29e4037485f9c3c98b604ad87dde258b9 100644 (file)
@@ -193,7 +193,6 @@ static apr_status_t churn_output(SSLFilterRec *pRec)
            }
             assert (n > 0); /* XXX => Check if required */
 #if 0 /* XXX */ 
-            }
             else if (n == 0)
                 done = 1;
             else
@@ -228,9 +227,9 @@ static apr_status_t churn (SSLFilterRec *pRec,
     ap_input_mode_t eMode = (eReadType == APR_BLOCK_READ) 
                             ? AP_MODE_BLOCKING : AP_MODE_NONBLOCKING;
 
-/* XXX : Errrr... bad way of doing things TBD */
-eReadType = APR_BLOCK_READ;
-eMode     = AP_MODE_BLOCKING;
+    /* XXX : Errrr... bad way of doing things TBD */
+    eReadType = APR_BLOCK_READ;
+    eMode     = AP_MODE_BLOCKING;
 
     if(APR_BRIGADE_EMPTY(pRec->pbbInput)) {
        ap_get_brigade(pRec->pInputFilter->next,pRec->pbbInput,eMode,readbytes);