diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-03 19:05:55 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-03 19:05:55 +0000 |
commit | d7a805efafd83203e72c334089c3f88204231ac7 (patch) | |
tree | d69521a26d050432f89cf5713aa1516f655b136f /networking | |
parent | ac1c96f6737799d1d7f85515237df80e9da71346 (diff) | |
download | busybox-d7a805efafd83203e72c334089c3f88204231ac7.tar.gz |
libbb: introduce and use xgetpwnam. ~ -150 bytes.
Diffstat (limited to 'networking')
-rw-r--r-- | networking/tftp.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/networking/tftp.c b/networking/tftp.c index 1f706852a..799dd9903 100644 --- a/networking/tftp.c +++ b/networking/tftp.c @@ -223,9 +223,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); + struct passwd *pw = xgetpwnam(user_opt); change_identity(pw); /* initgroups, setgid, setuid */ } } |