diff options
author | Bernhard Reutner-Fischer | 2008-07-21 14:41:33 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2008-07-21 14:41:33 +0000 |
commit | d73cbd31a295ac757e59f129f162d9cd69440224 (patch) | |
tree | 53d9c4cff7223be124698ec8cc3ccba4bded52eb /networking/tftp.c | |
parent | a53de7f7c2cd3ac46b26642aafb1a573a096a80d (diff) | |
download | busybox-d73cbd31a295ac757e59f129f162d9cd69440224.zip busybox-d73cbd31a295ac757e59f129f162d9cd69440224.tar.gz |
- first pass to unify/cleanup uid handling (-236b)
This needs further love, alot of love.. Tito?
Diffstat (limited to 'networking/tftp.c')
-rw-r--r-- | networking/tftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/tftp.c b/networking/tftp.c index d09a6eb..07d672d 100644 --- a/networking/tftp.c +++ b/networking/tftp.c @@ -225,7 +225,7 @@ static int tftp_protocol( if (user_opt) { struct passwd *pw = getpwnam(user_opt); if (!pw) - bb_error_msg_and_die("unknown user '%s'", user_opt); + bb_error_msg_and_die("unknown user %s", user_opt); change_identity(pw); /* initgroups, setgid, setuid */ } } |