aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-01-20 23:42:51 +0000
committerGuy Harris <guy@alum.mit.edu>2002-01-20 23:42:51 +0000
commitc78ec94c25cfdb82e423ee13c8335b1b27f38109 (patch)
tree0b4569b32ac5806a8d77d2b7079208e78f5747cf
parenta45d3d3bfeedde961725d452c7a8f447d958c4bc (diff)
The family and subtype fields in AIM messages are 16-bit fields, and
apparently specified in hex; display them as such in the Info column. svn path=/trunk/; revision=4583
-rw-r--r--packet-aim.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-aim.c b/packet-aim.c
index e62065fb7b..7a09966eae 100644
--- a/packet-aim.c
+++ b/packet-aim.c
@@ -2,7 +2,7 @@
* Routines for AIM Instant Messenger (OSCAR) dissection
* Copyright 2000, Ralf Hoelzer <ralf@well.com>
*
- * $Id: packet-aim.c,v 1.11 2001/12/10 00:25:26 guy Exp $
+ * $Id: packet-aim.c,v 1.12 2002/01/20 23:42:51 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -181,7 +181,7 @@ static void dissect_aim(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
- if (check_col(pinfo->cinfo, COL_INFO)) col_add_fstr(pinfo->cinfo, COL_INFO, "Family: %d - Subtype: %d (unknown)", family, subtype);
+ if (check_col(pinfo->cinfo, COL_INFO)) col_add_fstr(pinfo->cinfo, COL_INFO, "Family: 0x%04x - Subtype: 0x%04x (unknown)", family, subtype);
switch(family)
{