summaryrefslogtreecommitdiff
path: root/kerberosIV/kdb
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>1997-12-15 17:56:27 +0000
committerArtur Grabowski <art@cvs.openbsd.org>1997-12-15 17:56:27 +0000
commit25c94af0a2af23c8819b403339139ef6830411e3 (patch)
tree246f15545816d748649c2ddea2abe6c37f7af0a8 /kerberosIV/kdb
parent30f07e43453293dd26c2959326bb99a7afc0020e (diff)
Upgrades, sanity checks, cleanup, etc.
Diffstat (limited to 'kerberosIV/kdb')
-rw-r--r--kerberosIV/kdb/krb_cache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/kerberosIV/kdb/krb_cache.c b/kerberosIV/kdb/krb_cache.c
index d5d2dc74b7c..56eff40e518 100644
--- a/kerberosIV/kdb/krb_cache.c
+++ b/kerberosIV/kdb/krb_cache.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: krb_cache.c,v 1.3 1997/12/12 11:29:24 art Exp $ */
+/* $OpenBSD: krb_cache.c,v 1.4 1997/12/15 17:56:23 art Exp $ */
/* $KTH: krb_cache.c,v 1.6 1997/05/02 10:27:53 joda Exp $ */
/*
@@ -59,7 +59,7 @@ kerb_cache_get_principal(char *serv, char *inst, Principal *principal, unsigned
{
int found = 0;
- if (init == 0)
+ if (!init)
kerb_cache_init();
#ifdef DEBUG
if (kerb_debug & 2)
@@ -96,7 +96,7 @@ kerb_cache_put_principal(Principal *principal, unsigned int max)
u_long i;
int count = 0;
- if (init == 0)
+ if (!init)
kerb_cache_init();
#ifdef DEBUG
@@ -133,7 +133,7 @@ kerb_cache_get_dba(char *serv, char *inst, Dba *dba, unsigned int max)
{
int found = 0;
- if (init == 0)
+ if (!init)
kerb_cache_init();
#ifdef DEBUG