From 9a44c4f91ce7e517d5325fd3743e6ad9d54ef3f0 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 28 Dec 2006 05:44:47 +0000 Subject: bb_xget[pw/gr]nam were horribly misnamed - fixed. uidgid_get -> get_uidgid, add additional param (numeric_ok). Make chown use it. chown: fix "chown user: ...." install: fix incorrect use of bb_xget[pw/gr]nam --- debianutils/start_stop_daemon.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'debianutils') diff --git a/debianutils/start_stop_daemon.c b/debianutils/start_stop_daemon.c index d1f5e94..521b43d 100644 --- a/debianutils/start_stop_daemon.c +++ b/debianutils/start_stop_daemon.c @@ -274,7 +274,7 @@ int start_stop_daemon_main(int argc, char **argv) if (userspec) { user_id = bb_strtou(userspec, NULL, 10); if (errno) - user_id = bb_xgetpwnam(userspec); + user_id = xuname2uid(userspec); } if (opt & CTX_STOP) { @@ -305,7 +305,7 @@ int start_stop_daemon_main(int argc, char **argv) if (chuid) { user_id = bb_strtou(chuid, NULL, 10); if (errno) - user_id = bb_xgetpwnam(chuid); + user_id = xuname2uid(chuid); xsetuid(user_id); } #if ENABLE_FEATURE_START_STOP_DAEMON_FANCY -- cgit v1.1