From d73cbd31a295ac757e59f129f162d9cd69440224 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Mon, 21 Jul 2008 14:41:33 +0000 Subject: - first pass to unify/cleanup uid handling (-236b) This needs further love, alot of love.. Tito? --- miscutils/crontab.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'miscutils') diff --git a/miscutils/crontab.c b/miscutils/crontab.c index 64ea4e616..f8662babb 100644 --- a/miscutils/crontab.c +++ b/miscutils/crontab.c @@ -129,11 +129,11 @@ int crontab_main(int argc UNUSED_PARAM, char **argv) if (!pas) bb_error_msg_and_die("user %s is not known", user_name); } else { +/* XXX: xgetpwuid */ uid_t my_uid = getuid(); pas = getpwuid(my_uid); if (!pas) - bb_perror_msg_and_die("no user record for UID %u", - (unsigned)my_uid); + bb_perror_msg_and_die("unknown uid %d", (int)my_uid); } #define user_name DONT_USE_ME_BEYOND_THIS_POINT -- cgit v1.2.3