From d7a805efafd83203e72c334089c3f88204231ac7 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Wed, 3 Dec 2008 19:05:55 +0000 Subject: libbb: introduce and use xgetpwnam. ~ -150 bytes. --- miscutils/crontab.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'miscutils/crontab.c') diff --git a/miscutils/crontab.c b/miscutils/crontab.c index 9020149..13dfd77 100644 --- a/miscutils/crontab.c +++ b/miscutils/crontab.c @@ -126,9 +126,7 @@ int crontab_main(int argc UNUSED_PARAM, char **argv) } if (opt_ler & OPT_u) { - pas = getpwnam(user_name); - if (!pas) - bb_error_msg_and_die("user %s is not known", user_name); + pas = xgetpwnam(user_name); } else { pas = xgetpwuid(getuid()); } -- cgit v1.1