diff options
-rw-r--r-- | usr.sbin/config/hash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/config/hash.c b/usr.sbin/config/hash.c index a03ac789155..af9192bb600 100644 --- a/usr.sbin/config/hash.c +++ b/usr.sbin/config/hash.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hash.c,v 1.8 2000/11/15 01:47:13 angelos Exp $ */ +/* $OpenBSD: hash.c,v 1.9 2000/11/15 01:49:52 angelos Exp $ */ /* $NetBSD: hash.c,v 1.4 1996/11/07 22:59:43 gwr Exp $ */ /* @@ -272,7 +272,7 @@ ht_remove(ht, nam) return (0); for (thp = hp->h_next; thp != NULL; thp = hp->h_next) { - if (thp->h_name == nam) { + if (thp->h_name == nam) { hp->h_next = thp->h_next; /* XXX free thp ? */ } else |