diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-23 03:07:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-23 03:07:23 +0000 |
commit | b2e9efd3fb05b85dc11b3ea795320abfc2e86feb (patch) | |
tree | c4b3addfcfb980cd851b897d097c156230fd7a41 /usr.sbin/cron/popen.c | |
parent | 66b10192a6c1f61e3bd3d3645bf3178ae7844f41 (diff) |
uid_t and gid_t are unsigned
Diffstat (limited to 'usr.sbin/cron/popen.c')
-rw-r--r-- | usr.sbin/cron/popen.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/cron/popen.c b/usr.sbin/cron/popen.c index 3a5722face1..582cf709976 100644 --- a/usr.sbin/cron/popen.c +++ b/usr.sbin/cron/popen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: popen.c,v 1.13 2002/01/09 00:51:00 millert Exp $ */ +/* $OpenBSD: popen.c,v 1.14 2002/06/23 03:07:19 deraadt Exp $ */ /* * Copyright (c) 1988, 1993, 1994 @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)popen.c 8.3 (Berkeley) 4/6/94"; #else -static char rcsid[] = "$OpenBSD: popen.c,v 1.13 2002/01/09 00:51:00 millert Exp $"; +static char rcsid[] = "$OpenBSD: popen.c,v 1.14 2002/06/23 03:07:19 deraadt Exp $"; #endif #endif /* not lint */ @@ -133,11 +133,11 @@ cron_popen(program, type, e) pwd = getpwuid(e->uid); if (pwd == NULL) { - fprintf(stderr, "getpwuid: couldn't get entry for %d\n", e->uid); + fprintf(stderr, "getpwuid: couldn't get entry for %u\n", e->uid); _exit(ERROR_EXIT); } if (setusercontext(0, pwd, e->uid, LOGIN_SETALL) < 0) { - fprintf(stderr, "setusercontext failed for %d\n", e->uid); + fprintf(stderr, "setusercontext failed for %u\n", e->uid); _exit(ERROR_EXIT); } #else |