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/tcpudp.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/tcpudp.c')
-rw-r--r-- | networking/tcpudp.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/networking/tcpudp.c b/networking/tcpudp.c index 29408c5..d673119 100644 --- a/networking/tcpudp.c +++ b/networking/tcpudp.c @@ -216,8 +216,7 @@ int tcpudpsvd_main(int argc UNUSED_PARAM, char **argv) if (max_per_host > cmax) max_per_host = cmax; if (option_mask32 & OPT_u) { - if (!get_uidgid(&ugid, user, 1)) - bb_error_msg_and_die("unknown user/group: %s", user); + xget_uidgid(&ugid, user); } #ifdef SSLSVD if (option_mask32 & OPT_U) ssluser = optarg; @@ -245,9 +244,9 @@ int tcpudpsvd_main(int argc UNUSED_PARAM, char **argv) if (option_mask32 & OPT_u) if (!uidgid_get(&sslugid, ssluser, 1)) { if (errno) { - bb_perror_msg_and_die("fatal: cannot get user/group: %s", ssluser); + bb_perror_msg_and_die("can't get user/group: %s", ssluser); } - bb_error_msg_and_die("unknown user/group '%s'", ssluser); + bb_error_msg_and_die("unknown user/group %s", ssluser); } if (!cert) cert = "./cert.pem"; if (!key) key = cert; |