diff options
author | Hakan Olsson <ho@cvs.openbsd.org> | 2002-06-10 18:09:00 +0000 |
---|---|---|
committer | Hakan Olsson <ho@cvs.openbsd.org> | 2002-06-10 18:09:00 +0000 |
commit | 2bad24d48d7d5d6600e54f58f739b9721511d3ef (patch) | |
tree | 82d021bca39c9e9fa98407a476d84f353c2c9d1d /sbin/isakmpd/exchange.c | |
parent | 2c5d74d6bbb48ebdd6e6c66fcad23e407a71c75d (diff) |
The dlopen() stuff goes away.
Diffstat (limited to 'sbin/isakmpd/exchange.c')
-rw-r--r-- | sbin/isakmpd/exchange.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/isakmpd/exchange.c b/sbin/isakmpd/exchange.c index 6da0b577059..553d7f62d4b 100644 --- a/sbin/isakmpd/exchange.c +++ b/sbin/isakmpd/exchange.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exchange.c,v 1.66 2002/06/07 19:53:19 ho Exp $ */ +/* $OpenBSD: exchange.c,v 1.67 2002/06/10 18:08:58 ho Exp $ */ /* $EOM: exchange.c,v 1.143 2000/12/04 00:02:25 angelos Exp $ */ /* @@ -1268,7 +1268,7 @@ exchange_free_aux (void *v_exch) #if defined (POLICY) || defined (KEYNOTE) if (exchange->policy_id != -1) - LK (kn_close, (exchange->policy_id)); + kn_close (exchange->policy_id); #endif exchange_free_aca_list (exchange); |