aboutsummaryrefslogtreecommitdiffstats
path: root/packet-kerberos.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-01-20 20:32:25 +0000
committerGuy Harris <guy@alum.mit.edu>2004-01-20 20:32:25 +0000
commitf85630766d8f28d05f1ce129fff7790120d48e53 (patch)
tree7d458a5028213c7000c0288e0f0de72cd8db947b /packet-kerberos.c
parenta02794c549553e4bf8925833f5be8e84384bbd79 (diff)
The offset argument to a "get_pdu_len" function is an "int", not a
"guint". svn path=/trunk/; revision=9759
Diffstat (limited to 'packet-kerberos.c')
-rw-r--r--packet-kerberos.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-kerberos.c b/packet-kerberos.c
index c2b15a6092..25e9cde06d 100644
--- a/packet-kerberos.c
+++ b/packet-kerberos.c
@@ -14,7 +14,7 @@
*
* http://www.ietf.org/internet-drafts/draft-ietf-krb-wg-kerberos-clarifications-03.txt
*
- * $Id: packet-kerberos.c,v 1.43 2004/01/20 19:24:42 jmayer Exp $
+ * $Id: packet-kerberos.c,v 1.44 2004/01/20 20:32:25 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -428,7 +428,7 @@ static void show_krb_recordmark(proto_tree *kerberos_tree, tvbuff_t *tvb,
static guint kerberos_rm_to_reclen(guint krb_rm);
static void dissect_kerberos_tcp_pdu(tvbuff_t *tvb, packet_info *pinfo,
proto_tree *tree);
-static guint get_krb_pdu_len(tvbuff_t *tvb, guint offset);
+static guint get_krb_pdu_len(tvbuff_t *tvb, int offset);
static const char *
to_error_str(int ret) {
@@ -656,7 +656,7 @@ kerberos_rm_to_reclen(guint krb_rm)
}
static guint
-get_krb_pdu_len(tvbuff_t *tvb, guint offset)
+get_krb_pdu_len(tvbuff_t *tvb, int offset)
{
guint krb_rm;
gint pdulen;