aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-05-19 18:28:24 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-05-19 18:28:24 +0000
commitaf7304aa79849218a86d1c6a3b035b7575078ebe (patch)
tree8dbeee3824855786c77dde31d69c5aea98185e82
parent8315e941ac5d6e223b6c7981291cb63a393632ac (diff)
Move pd variables outside HAVE_LIBGCRYPT.
svn path=/trunk/; revision=28414
-rw-r--r--epan/dissectors/packet-isakmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-isakmp.c b/epan/dissectors/packet-isakmp.c
index 7ed5fbfdc9..0d9d45b205 100644
--- a/epan/dissectors/packet-isakmp.c
+++ b/epan/dissectors/packet-isakmp.c
@@ -994,14 +994,14 @@ dissect_isakmp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_item * ti;
proto_tree * isakmp_tree = NULL;
int isakmp_version;
+ void *pd_save;
+ gboolean pd_changed = FALSE;
#ifdef HAVE_LIBGCRYPT
guint8 i_cookie[COOKIE_SIZE], *ic_key;
decrypt_data_t *decr = NULL;
tvbuff_t *decr_tvb;
proto_tree *decr_tree;
address null_addr;
- void *pd_save;
- gboolean pd_changed = FALSE;
#endif /* HAVE_LIBGCRYPT */
if (check_col(pinfo->cinfo, COL_PROTOCOL))