diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-21 14:41:33 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-21 14:41:33 +0000 |
commit | d73cbd31a295ac757e59f129f162d9cd69440224 (patch) | |
tree | 53d9c4cff7223be124698ec8cc3ccba4bded52eb /libbb/bb_pwd.c | |
parent | a53de7f7c2cd3ac46b26642aafb1a573a096a80d (diff) | |
download | busybox-d73cbd31a295ac757e59f129f162d9cd69440224.tar.gz |
- first pass to unify/cleanup uid handling (-236b)
This needs further love, alot of love.. Tito?
Diffstat (limited to 'libbb/bb_pwd.c')
-rw-r--r-- | libbb/bb_pwd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/bb_pwd.c b/libbb/bb_pwd.c index b03dc8399..65eb69200 100644 --- a/libbb/bb_pwd.c +++ b/libbb/bb_pwd.c @@ -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; } |