comparison src/core/ngx_conf_file.c @ 7451:d864ee67b5ae

Use %s for errors returned from configuration parsing handlers.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 25 Dec 2018 15:26:58 +0300
parents f17e313009b0
children 485dba3e2a01
comparison
equal deleted inserted replaced
7450:2d9ab7717e23 7451:d864ee67b5ae
308 308
309 if (rv == NGX_CONF_ERROR) { 309 if (rv == NGX_CONF_ERROR) {
310 goto failed; 310 goto failed;
311 } 311 }
312 312
313 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, rv); 313 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, "%s", rv);
314 314
315 goto failed; 315 goto failed;
316 } 316 }
317 317
318 318