diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-05-17 08:23:50 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-05-17 08:23:50 +0000 |
commit | 4a9e0166ce146c8f4c117fe6a1858d052eaa3a11 (patch) | |
tree | a656ec715d6cd5625c274a2748482e8e3195c9cd /packet-isakmp.c | |
parent | b4905911d33306a37c723caa0b9d4baa09a5abd9 (diff) | |
download | wireshark-4a9e0166ce146c8f4c117fe6a1858d052eaa3a11.tar.gz wireshark-4a9e0166ce146c8f4c117fe6a1858d052eaa3a11.tar.bz2 wireshark-4a9e0166ce146c8f4c117fe6a1858d052eaa3a11.zip |
Small fix from Yaniv Kaul.
svn path=/trunk/; revision=1972
Diffstat (limited to 'packet-isakmp.c')
-rw-r--r-- | packet-isakmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-isakmp.c b/packet-isakmp.c index c66029dd35..7b8e777965 100644 --- a/packet-isakmp.c +++ b/packet-isakmp.c @@ -2,7 +2,7 @@ * Routines for the Internet Security Association and Key Management Protocol (ISAKMP) * Brad Robel-Forrest <brad.robel-forrest@watchguard.com> * - * $Id: packet-isakmp.c,v 1.17 2000/05/11 20:36:14 guy Exp $ + * $Id: packet-isakmp.c,v 1.18 2000/05/17 08:23:50 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -601,7 +601,7 @@ dissect_transform(const u_char *pd, int offset, frame_data *fd, str = atttype2str(type); } - if (pd[offset] & 0xf0) { + if (pd[offset] & 0x80) { proto_tree_add_text(ntree, NullTVB, offset, 4, "%s (%u): %s (%u)", str, type, |