summaryrefslogtreecommitdiffstats
path: root/usr.sbin/tokenadm/tokenadm.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/tokenadm/tokenadm.c')
-rw-r--r--usr.sbin/tokenadm/tokenadm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/tokenadm/tokenadm.c b/usr.sbin/tokenadm/tokenadm.c
index 0ca1851f021..f0e65d154d8 100644
--- a/usr.sbin/tokenadm/tokenadm.c
+++ b/usr.sbin/tokenadm/tokenadm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tokenadm.c,v 1.7 2004/04/07 14:09:35 aaron Exp $ */
+/* $OpenBSD: tokenadm.c,v 1.8 2004/06/21 15:27:19 avsm Exp $ */
/*-
* Copyright (c) 1995 Migration Associates Corp. All Rights Reserved
@@ -153,11 +153,11 @@ main(int argc, char **argv)
if (what == REMOVE || how)
goto usage;
if (*optarg == '-') {
- if ((c = token_mode(optarg+1)) == NULL)
+ if ((c = token_mode(optarg+1)) == 0)
errx(1, "%s: unknown mode", optarg+1);
dmode |= c;
} else {
- if ((c = token_mode(optarg)) == NULL)
+ if ((c = token_mode(optarg)) == 0)
errx(1, "%s: unknown mode", optarg);
emode |= c;
}