Lines Matching refs:path

112 	{"path",		no_argument, NULL, 'p'},
273 case 'p': /* print path */
471 fprintf (stderr, "\t-p%s\t show path of keyfile / create key in current directory\n", loptstr (", --path", "\t"));
498 char path[MAX_PATHSIZE+1];
502 pathname (path, sizeof (path), dir, LOCALCONF_FILE, NULL);
503 if ( fileexist (path) ) /* load local config file */
505 dbg_val ("Load local config file \"%s\"\n", path);
507 conf = loadconfig (path, &localconf);
540 char path[MAX_PATHSIZE+1];
596 pathname (path, sizeof (path), dir, LOCALCONF_FILE, NULL);
597 if ( fileexist (path) ) /* load local config file */
599 dbg_val ("Load local config file \"%s\"\n", path);
601 conf = loadconfig (path, &localconf);
606 pathname (path, sizeof (path), dir, "parent-", keyname);
608 if ( (parent_exist = fileexist (path)) != 0 )
610 parent_phase = get_parent_phase (path);
611 parent_age = file_age (path);
633 fprintf (stdout, "\t parent_file %s %s\n", path, parent_exist ? "exist": "not exist");
663 if ( !create_parent_file (path, phase, key_ttl, dkp) )
664 fatal ("Couldn't create parentfile %s\n", path);
681 if ( !create_parent_file (path, phase, key_ttl, dkp) )
682 fatal ("Couldn't create parentfile %s\n", path);
695 unlink (path);
736 char path[MAX_PATHSIZE+1];
751 pathname (path, sizeof (path), dir, dentp->d_name, NULL);
752 if ( is_directory (path) && recflag )
754 dbg_val ("directory: recursive %s\n", path);
755 parsedirectory (path, listp);
774 char path[MAX_PATHSIZE+1];
777 /* file arg contains path ? ... */
778 file = splitpath (path, sizeof (path), file); /* ... then split of */
782 if ( (dkp = dki_read (path, file)) ) /* read DNS key file ... */