diff src/core/ngx_conf_file.c @ 32:da8c190bdaba NGINX_0_1_16

nginx 0.1.16 *) Bugfix: if the response were transferred by chunks, then on the HEAD request the final chunk was issued. *) Bugfix: the "Connection: keep-alive" header were issued, even if the keepalive_timeout directive forbade the keep-alive use. *) Bugfix: the errors in the ngx_http_fastcgi_module caused the segmentation faults. *) Bugfix: the compressed response encrypted by SSL may not transferred complete. *) Bugfix: the TCP-specific TCP_NODELAY, TCP_NOPSUH, and TCP_CORK options, are not used for the unix domain sockets. *) Feature: the rewrite directive supports the arguments rewriting. *) Bugfix: the response code 400 was returned for the POST request with the "Content-Length: 0" header; bug appeared in 0.1.14.
author Igor Sysoev <http://sysoev.ru>
date Tue, 25 Jan 2005 00:00:00 +0300
parents 46833bd150cb
children aab2ea7c0458
line wrap: on
line diff
--- a/src/core/ngx_conf_file.c
+++ b/src/core/ngx_conf_file.c
@@ -111,10 +111,6 @@ char *ngx_conf_parse(ngx_conf_t *cf, ngx
          *    NGX_CONF_FILE_DONE    the configuration file is done
          */
 
-#if 0
-ngx_log_debug(cf->log, "token %d" _ rc);
-#endif
-
         if (rc == NGX_ERROR) {
             break;
         }
@@ -173,9 +169,7 @@ ngx_log_debug(cf->log, "token %d" _ rc);
                 {
 
                     found = 1;
-#if 0
-ngx_log_debug(cf->log, "command '%s'" _ cmd->name.data);
-#endif
+
                     /* is the directive's location right ? */
 
                     if ((cmd->type & cf->cmd_type) == 0) {
@@ -284,10 +278,6 @@ ngx_log_debug(cf->log, "command '%s'" _ 
 
                     rv = cmd->set(cf, cmd, conf);
 
-#if 0
-ngx_log_debug(cf->log, "rv: %d" _ rv);
-#endif
-
                     if (rv == NGX_CONF_OK) {
                         break;
 
@@ -366,10 +356,6 @@ static int ngx_conf_read_token(ngx_conf_
     b = cf->conf_file->buffer;
     start = b->pos;
 
-#if 0
-ngx_log_debug(cf->log, "TOKEN START");
-#endif
-
     for ( ;; ) {
 
         if (b->pos >= b->last) {
@@ -398,12 +384,6 @@ ngx_log_debug(cf->log, "TOKEN START");
 
         ch = *b->pos++;
 
-#if 0
-ngx_log_debug(cf->log, "%d:%d:%d:%d:%d '%c'" _
-              last_space _ need_space _
-              quoted _ s_quoted _ d_quoted _ ch);
-#endif
-
         if (ch == LF) {
             cf->conf_file->line++;
 
@@ -574,10 +554,6 @@ ngx_log_debug(cf->log, "%d:%d:%d:%d:%d '
                 *dst = '\0';
                 word->len = len;
 
-#if 0
-ngx_log_debug(cf->log, "FOUND %d:'%s'" _ word->len _ word->data);
-#endif
-
                 if (ch == ';') {
                     return NGX_OK;
                 }