Lines Matching refs:path
405 char path[MAX_PATHSIZE+1];
409 pathname (path, sizeof (path), dir, LOCALCONF_FILE, NULL);
410 if ( fileexist (path) ) /* load local config file */
412 dbg_val ("Load local config file \"%s\"\n", path);
414 conf = loadconfig (path, &localconf);
447 char path[MAX_PATHSIZE+1];
503 pathname (path, sizeof (path), dir, LOCALCONF_FILE, NULL);
504 if ( fileexist (path) ) /* load local config file */
506 dbg_val ("Load local config file \"%s\"\n", path);
508 conf = loadconfig (path, &localconf);
513 pathname (path, sizeof (path), dir, "parent-", keyname);
515 if ( (parent_exist = fileexist (path)) != 0 )
517 parent_phase = get_parent_phase (path);
518 parent_age = file_age (path);
540 fprintf (stdout, "\t parent_file %s %s\n", path, parent_exist ? "exist": "not exist");
570 if ( !create_parent_file (path, phase, key_ttl, dkp) )
571 fatal ("Couldn't create parentfile %s\n", path);
588 if ( !create_parent_file (path, phase, key_ttl, dkp) )
589 fatal ("Couldn't create parentfile %s\n", path);
602 unlink (path);
643 char path[MAX_PATHSIZE+1];
658 pathname (path, sizeof (path), dir, dentp->d_name, NULL);
659 if ( is_directory (path) && recflag )
661 dbg_val ("directory: recursive %s\n", path);
662 parsedirectory (path, listp);
681 char path[MAX_PATHSIZE+1];
684 /* file arg contains path ? ... */
685 file = splitpath (path, sizeof (path), file); /* ... then split of */
689 if ( (dkp = dki_read (path, file)) ) /* read DNS key file ... */