From 351d6ed48796a3a3da6644842a0082fe9f449a36 Mon Sep 17 00:00:00 2001 From: "Angelos D. Keromytis" Date: Thu, 1 Jun 2000 05:46:13 +0000 Subject: Should learn how to count... --- sys/netinet/ip_ipsp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/netinet') diff --git a/sys/netinet/ip_ipsp.c b/sys/netinet/ip_ipsp.c index 7671c849eb3..30b1380b90a 100644 --- a/sys/netinet/ip_ipsp.c +++ b/sys/netinet/ip_ipsp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipsp.c,v 1.88 2000/06/01 05:33:08 angelos Exp $ */ +/* $OpenBSD: ip_ipsp.c,v 1.89 2000/06/01 05:46:12 angelos Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -1113,7 +1113,7 @@ tdb_delete(struct tdb *tdbp, int delchain, int expflags) int s; /* If it's still referenced, go on */ - if (tdbp->tdb_ref-- > 0) + if (--tdbp->tdb_ref > 0) { tdbp->tdb_flags |= TDBF_INVALID; return; -- cgit v1.2.3