aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-radius.c
diff options
context:
space:
mode:
authorlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2005-12-30 18:41:56 +0000
committerlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2005-12-30 18:41:56 +0000
commit249fb396bd584d0e13119308628be538667aaa01 (patch)
treeb1a63980c0aad5d4d175dcd2b96c1a6c1d953dc1 /epan/dissectors/packet-radius.c
parenteff3c89c3526eb1852443d355c7c5d8c9de39f4c (diff)
From: Graeme Hewson
Decryption of the RADIUS User-Password attribute is currently broken. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16920 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-radius.c')
-rw-r--r--epan/dissectors/packet-radius.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-radius.c b/epan/dissectors/packet-radius.c
index 5ae221eadb..372540f024 100644
--- a/epan/dissectors/packet-radius.c
+++ b/epan/dissectors/packet-radius.c
@@ -847,7 +847,7 @@ static void dissect_radius(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_tree_add_item(radius_tree, hf_radius_authenticator, tvb, 4,AUTHENTICATOR_LENGTH,FALSE);
}
- tvb_memcpy(tvb,authenticator,0,AUTHENTICATOR_LENGTH);
+ tvb_memcpy(tvb,authenticator,4,AUTHENTICATOR_LENGTH);
if (tree && avplength > 0) {
/* list the attribute value pairs */