comparison src/core/ngx_conf_file.c @ 1237:2c2271d3aac5

change wording
author Igor Sysoev <igor@sysoev.ru>
date Tue, 05 Jun 2007 11:55:39 +0000
parents f1a8c6cd10ba
children e958b3cab51a 9a6d577807ea
comparison
equal deleted inserted replaced
1236:5e4d3b5d7ad0 1237:2c2271d3aac5
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