aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-09-14 16:02:54 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-09-14 16:02:54 +0000
commit40cf0a8c809ee1ab36303c8b166860ca2d18c641 (patch)
tree48a48cc875ec273a7fa8c626232b4ec784842077
parentf34e1a97c625ff92641fd9a20621365f5fd27ac7 (diff)
when we have raw keberos inside the spnego blob, pass it as is over to
the kerberos dissector and do not strip the ber tag and lengths off svn path=/trunk/; revision=15794
-rw-r--r--epan/dissectors/packet-spnego.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/dissectors/packet-spnego.c b/epan/dissectors/packet-spnego.c
index 8d76ccdca8..abf57e6112 100644
--- a/epan/dissectors/packet-spnego.c
+++ b/epan/dissectors/packet-spnego.c
@@ -336,8 +336,7 @@ dissect_spnego_krb5(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
* No token ID - just dissect as a Kerberos message and
* return.
*/
- krb5_tvb = tvb_new_subset(tvb, offset, -1, -1);
- offset = dissect_kerberos_main(krb5_tvb, pinfo, subtree, FALSE, NULL);
+ offset = dissect_kerberos_main(tvb, pinfo, subtree, FALSE, NULL);
return;
default: