diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-04-27 21:04:08 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-04-27 21:04:08 +0000 |
commit | e7f0d4f19087e06a6734a275a4469b228ffeb175 (patch) | |
tree | b16b66461455611dc0161fca0dde0c268969167e /sbin | |
parent | 87913cf4ca3b26bd5ab60ddd1fa41f56bb4bf74c (diff) |
Merge with EOM 1.83
author: niklas
Do not hold on to the exchange for post quick mode, it will be there.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/isakmpd/ike_quick_mode.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sbin/isakmpd/ike_quick_mode.c b/sbin/isakmpd/ike_quick_mode.c index c21d45823b8..ec3f2865204 100644 --- a/sbin/isakmpd/ike_quick_mode.c +++ b/sbin/isakmpd/ike_quick_mode.c @@ -1,5 +1,5 @@ -/* $OpenBSD: ike_quick_mode.c,v 1.13 1999/04/19 21:22:49 niklas Exp $ */ -/* $EOM: ike_quick_mode.c,v 1.82 1999/04/17 23:20:27 niklas Exp $ */ +/* $OpenBSD: ike_quick_mode.c,v 1.14 1999/04/27 21:04:07 niklas Exp $ */ +/* $EOM: ike_quick_mode.c,v 1.83 1999/04/25 22:08:08 niklas Exp $ */ /* * Copyright (c) 1998, 1999 Niklas Hallqvist. All rights reserved. @@ -834,7 +834,6 @@ initiator_send_HASH (struct message *msg) if (ie->group) message_register_post_send (msg, gen_g_xy); sa_reference (msg->isakmp_sa); - exchange_reference (exchange); message_register_post_send (msg, post_quick_mode); return 0; @@ -942,7 +941,6 @@ post_quick_mode (struct message *msg) } } sa_release (isakmp_sa); - exchange_release (exchange); } /* @@ -1351,7 +1349,6 @@ responder_recv_HASH (struct message *msg) free (my_hash); sa_reference (msg->isakmp_sa); - exchange_reference (exchange); post_quick_mode (msg); return 0; |