aboutsummaryrefslogtreecommitdiffstats
path: root/packet-afs.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-06-18 01:49:17 +0000
committerGuy Harris <guy@alum.mit.edu>2001-06-18 01:49:17 +0000
commitb9222c0011e362d2ba9895af4eaef04a3d72c8c6 (patch)
tree9a0b0bdf0483f319fc5eb7a7a8af6a6d8c5bd2d3 /packet-afs.c
parentc8554ff99aa8c573adde8afd44edbbd1806c47df (diff)
Various signed vs. unsigned fixes, from Joerg Mayer.
svn path=/trunk/; revision=3560
Diffstat (limited to 'packet-afs.c')
-rw-r--r--packet-afs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-afs.c b/packet-afs.c
index dda21efef7..0394989a9f 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.31 2001/05/27 05:00:17 guy Exp $
+ * $Id: packet-afs.c,v 1.32 2001/06/18 01:49:16 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -427,7 +427,7 @@ static int
dissect_acl(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
int old_offset;
- guint32 bytes;
+ gint32 bytes;
int i, n, pos, neg, acl;
char user[128]; /* Be sure to adjust sscanf()s below if length is changed... */