Home | History | Annotate | Download | only in inetd

Lines Matching refs:glob_path

1269 include_matched_path(char *glob_path)
1274 if (lstat(glob_path, &sb) != 0) {
1275 ERR("Error calling stat on path '%s': %s", glob_path,
1281 DPRINTCONF("'%s' is not a file.", glob_path);
1282 ERR("The matched path '%s' is not a regular file", glob_path);
1286 DPRINTCONF("Include '%s'", glob_path);
1289 tmp = glob_path;
1290 glob_path = realpath(tmp, NULL);
1294 if (check_no_reinclude(glob_path)) {
1295 prepare_next_config(glob_path);
1299 "chain", glob_path);
1301 "dependency", glob_path);
1305 free(glob_path);
1306 glob_path = tmp;
1311 check_no_reinclude(const char *glob_path)
1314 char *abs_path = realpath(glob_path, NULL);
1318 glob_path, strerror(errno));