Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-07-21 18:41:33 +0400
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-07-21 18:41:33 +0400
commitd73cbd31a295ac757e59f129f162d9cd69440224 (patch)
tree53d9c4cff7223be124698ec8cc3ccba4bded52eb /libbb/bb_pwd.c
parenta53de7f7c2cd3ac46b26642aafb1a573a096a80d (diff)
- 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.c2
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;
}