Home | History | Annotate | Download | only in libutil

Lines Matching defs:pw_prefix

67 static	char	pw_prefix[MAXPATHLEN];
73 return(pw_prefix);
84 if (length < sizeof(pw_prefix)) {
85 (void)strcpy(pw_prefix, new_prefix);
86 while (length > 0 && pw_prefix[length - 1] == '/')
87 pw_prefix[--length] = '\0';
101 if (pw_prefix[0] == '\0')
104 if (strlen(pw_prefix) + strlen(filename) < sizeof(newfilename))
105 return strcat(strcpy(newfilename, pw_prefix), filename);
150 args[2] = pw_prefix;
376 snprintf(errbuf, errbufsz, "%s: %s", pw_prefix,
382 snprintf(errbuf, errbufsz, "%s: %s", pw_prefix,
493 warnx("%s%s: unchanged", pw_prefix, _PATH_MASTERPASSWD);