- first pass to unify/cleanup uid handling (-236b)

This needs further love, alot of love.. Tito?
This commit is contained in:
Bernhard Reutner-Fischer
2008-07-21 14:41:33 +00:00
parent a53de7f7c2
commit d73cbd31a2
13 changed files with 26 additions and 26 deletions

View File

@@ -82,7 +82,7 @@ long FAST_FUNC xuname2uid(const char *name)
myuser = getpwnam(name);
if (myuser == NULL)
bb_error_msg_and_die("unknown user name: %s", name);
bb_error_msg_and_die("unknown user %s", name);
return myuser->pw_uid;
}