Lines Matching refs:path
1199 char *user, *path, *file;
1211 path = malloc(pl);
1212 if (path == NULL)
1214 (void) slprintf(path, pl, "%s/%s", user, file);
1216 ppp_dbglog("pseudonym file: %s", path);
1219 return (path);
1226 char *path;
1229 if ((path = name_of_pn_file()) == NULL)
1231 fd = open(path, modebits, S_IRUSR | S_IWUSR);
1233 free(path);
1241 char *path;
1243 if ((path = name_of_pn_file()) != NULL) {
1244 (void) unlink(path);
1245 (void) free(path);