comparison src/core/ngx_conf_file.c @ 308:94e16de3c33f NGINX_0_5_24

nginx 0.5.24 *) Security: the "ssl_verify_client" directive did not work if request was made using HTTP/0.9. *) Bugfix: a part of response body might be passed uncompressed if gzip was used; bug appeared in 0.5.23.
author Igor Sysoev <http://sysoev.ru>
date Wed, 06 Jun 2007 00:00:00 +0400
parents 0b1cc3960e27
children f7cd062ee035
comparison
equal deleted inserted replaced
307:0bcb7f864b94 308:94e16de3c33f
342 if (rv == NGX_CONF_ERROR) { 342 if (rv == NGX_CONF_ERROR) {
343 return NGX_ERROR; 343 return NGX_ERROR;
344 } 344 }
345 345
346 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, 346 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
347 "the \"%s\" directive %s", name->data, rv); 347 "\"%s\" directive %s", name->data, rv);
348 348
349 return NGX_ERROR; 349 return NGX_ERROR;
350 } 350 }
351 } 351 }
352 352
358 } 358 }
359 359
360 not_allowed: 360 not_allowed:
361 361
362 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, 362 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
363 "directive \"%s\" is not allowed here", name->data); 363 "\"%s\" directive is not allowed here", name->data);
364 return NGX_ERROR; 364 return NGX_ERROR;
365 365
366 invalid: 366 invalid:
367 367
368 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, 368 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
369 "invalid number arguments in directive \"%s\"", 369 "invalid number arguments in \"%s\" directive",
370 name->data); 370 name->data);
371 371
372 return NGX_ERROR; 372 return NGX_ERROR;
373 } 373 }
374 374