aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ppp.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-03-25 23:12:07 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-03-25 23:12:07 +0000
commit9d22b60eff8aaa4b5d3322137a4e75958b9f3ca5 (patch)
treec71dde0042b07416960887c223b5acbfff4596f7 /epan/dissectors/packet-ppp.c
parent269bcf687f4e939df8ede86d0bebec38df7f9f85 (diff)
buildbot bugfix: and again, a guint16 will never become lower than zero
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13906 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-ppp.c')
-rw-r--r--epan/dissectors/packet-ppp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ppp.c b/epan/dissectors/packet-ppp.c
index a810f51388..cfcce52a0a 100644
--- a/epan/dissectors/packet-ppp.c
+++ b/epan/dissectors/packet-ppp.c
@@ -3528,7 +3528,7 @@ dissect_chap( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree ) {
proto_tree *value_tree;
guint8 code, id, value_size;
- guint16 length;
+ gint32 length;
int offset;
int name_length;