diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-06-13 06:43:46 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-06-13 06:43:46 +0000 |
commit | 7f22bc6e1a2c0788ce8771dac2cc16cfc9711a47 (patch) | |
tree | 310329960d28bd1141af4de65536155fdb6b3d9a /packet-afs.c | |
parent | 87e011637cf99dcc57c2aefd4b6185fea10c3aee (diff) | |
download | wireshark-7f22bc6e1a2c0788ce8771dac2cc16cfc9711a47.tar.gz wireshark-7f22bc6e1a2c0788ce8771dac2cc16cfc9711a47.tar.bz2 wireshark-7f22bc6e1a2c0788ce8771dac2cc16cfc9711a47.zip |
From Loic Tortay: fix a crash when dissecting AFS authentication
requests - the data part of the AFS authentication request
(hf_afs_kauth_data) is displayed as a string whilst declared as a binary
array in "packet-afs-register-info.h".
svn path=/trunk/; revision=5661
Diffstat (limited to 'packet-afs.c')
-rw-r--r-- | packet-afs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-afs.c b/packet-afs.c index abc4280c73..7b62228ed0 100644 --- a/packet-afs.c +++ b/packet-afs.c @@ -8,7 +8,7 @@ * Portions based on information/specs retrieved from the OpenAFS sources at * www.openafs.org, Copyright IBM. * - * $Id: packet-afs.c,v 1.46 2002/05/10 23:20:37 guy Exp $ + * $Id: packet-afs.c,v 1.47 2002/06/13 06:43:44 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -1115,7 +1115,7 @@ dissect_kauth_request(tvbuff_t *tvb, struct rxinfo *rxinfo _U_, proto_tree *tree case 23: /* getticket */ OUT_UINT(hf_afs_kauth_kvno); OUT_RXString(hf_afs_kauth_domain); - OUT_RXString(hf_afs_kauth_data); + OUT_BYTES_ALL(hf_afs_kauth_data); OUT_RXString(hf_afs_kauth_princ); OUT_RXString(hf_afs_kauth_realm); break; |