summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2002-06-23 03:11:10 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2002-06-23 03:11:10 +0000
commit1448160e154647504f544fa6bf8817750424a662 (patch)
tree3ef913327cc788bc1c94e2ec888912d3edead169 /libexec
parentb2e9efd3fb05b85dc11b3ea795320abfc2e86feb (diff)
more gid_t and uid_t are unsigned
Diffstat (limited to 'libexec')
-rw-r--r--libexec/login_token/tokendb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/login_token/tokendb.c b/libexec/login_token/tokendb.c
index 775ce998e17..75f0f46c06f 100644
--- a/libexec/login_token/tokendb.c
+++ b/libexec/login_token/tokendb.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tokendb.c,v 1.3 2001/05/30 20:15:57 markus Exp $ */
+/* $OpenBSD: tokendb.c,v 1.4 2002/06/23 03:11:09 deraadt Exp $ */
/*-
* Copyright (c) 1995 Migration Associates Corp. All Rights Reserved
@@ -176,8 +176,8 @@ tokendb_open(void)
printf("Authentication disabled\n");
fflush(stdout);
syslog(LOG_ALERT,
- "POTENTIAL COMPROMISE of %s. Owner was %d, "
- "Group was %d", tt->db, statb.st_uid, statb.st_gid);
+ "POTENTIAL COMPROMISE of %s. Owner was %u, "
+ "Group was %u", tt->db, statb.st_uid, statb.st_gid);
return (-1);
#else
must_set_perms++;