quoted too long parameter error
Igor Sysoev
13 years ago
481 | 481 | if (len == ngx_pagesize) { |
482 | 482 | cf->conf_file->line = start_line; |
483 | 483 | |
484 | if (d_quoted) { | |
485 | ch = '"'; | |
486 | ||
487 | } else if (s_quoted) { | |
488 | ch = '\''; | |
489 | ||
490 | } else { | |
491 | ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, | |
492 | "too long parameter \"%*s...\" started", | |
493 | 10, start); | |
494 | return NGX_ERROR; | |
495 | } | |
496 | ||
484 | 497 | ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, |
485 | "too long parameter \"%*s...\" started", | |
486 | 10, start); | |
498 | "too long parameter, probably " | |
499 | "missing terminating \"%c\" character", ch); | |
487 | 500 | return NGX_ERROR; |
488 | 501 | } |
489 | 502 |