diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-06-05 23:09:22 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-06-05 23:09:22 +0000 |
commit | 1dc95bd0d0c32dd2cd70694f56739ccc56a5d13d (patch) | |
tree | e1eb41be59267a44d4a5040d9f2233da0e07d331 /sbin/isakmpd/ike_quick_mode.c | |
parent | 8aec4060c0a5dd5697a81f9d49e9c43900751fb8 (diff) |
Merge with EOM 1.89
author: ho
Remove early variable initialization.
Diffstat (limited to 'sbin/isakmpd/ike_quick_mode.c')
-rw-r--r-- | sbin/isakmpd/ike_quick_mode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/isakmpd/ike_quick_mode.c b/sbin/isakmpd/ike_quick_mode.c index 50d193e3c85..c653a0b864f 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.17 1999/06/02 06:30:39 niklas Exp $ */ -/* $EOM: ike_quick_mode.c,v 1.88 1999/05/30 14:12:30 niklas Exp $ */ +/* $OpenBSD: ike_quick_mode.c,v 1.18 1999/06/05 23:09:21 niklas Exp $ */ +/* $EOM: ike_quick_mode.c,v 1.89 1999/06/05 22:07:20 ho Exp $ */ /* * Copyright (c) 1998, 1999 Niklas Hallqvist. All rights reserved. @@ -794,7 +794,7 @@ post_quick_mode (struct message *msg) struct prf *prf; struct sa *sa; struct proto *proto; - struct ipsec_proto *iproto = proto->data; + struct ipsec_proto *iproto; u_int8_t *keymat; int i; |