Modify a "You don't exist" message, pretty rude for transient YP failures.

This commit is contained in:
Brian Feldman 2001-09-27 18:54:42 +00:00
parent 02538b88ad
commit ccf35be189
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=84043

View File

@ -263,7 +263,7 @@ main(int ac, char **av)
/* Get user data. */
pw = getpwuid(original_real_uid);
if (!pw) {
log("You don't exist, go away!");
log("unknown user %d", original_real_uid);
exit(1);
}
/* Take a copy of the returned structure. */