comparison src/http/modules/ngx_http_map_module.c @ 1352:e958b3cab51a

--sysconfdir=DIR
author Igor Sysoev <igor@sysoev.ru>
date Sun, 29 Jul 2007 18:05:45 +0000
parents 8ef04207c84f
children 03341711f9a2
comparison
equal deleted inserted replaced
1351:9ca095d36863 1352:e958b3cab51a
376 } 376 }
377 377
378 if (ngx_strcmp(value[0].data, "include") == 0) { 378 if (ngx_strcmp(value[0].data, "include") == 0) {
379 file = value[1]; 379 file = value[1];
380 380
381 if (ngx_conf_full_name(cf->cycle, &file) == NGX_ERROR){ 381 if (ngx_conf_full_name(cf->cycle, &file, 1) == NGX_ERROR){
382 return NGX_CONF_ERROR; 382 return NGX_CONF_ERROR;
383 } 383 }
384 384
385 ngx_log_debug1(NGX_LOG_DEBUG_CORE, cf->log, 0, "include %s", file.data); 385 ngx_log_debug1(NGX_LOG_DEBUG_CORE, cf->log, 0, "include %s", file.data);
386 386