aboutsummaryrefslogtreecommitdiffstats
path: root/packet-afp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-04-28 23:47:44 +0000
committerGuy Harris <guy@alum.mit.edu>2002-04-28 23:47:44 +0000
commitfd629d84a8e4cff5759c9913667442982d2f6f2d (patch)
treedc3bd9eb8107794b733655c3b3931e6be0a40093 /packet-afp.c
parentdd9f02255dbd39bc8cdc847512326a61a4ee0b8a (diff)
Show unknown AFP command codes in decimal in the summary line, as we
show them in decimal in the protocol tree. svn path=/trunk/; revision=5282
Diffstat (limited to 'packet-afp.c')
-rw-r--r--packet-afp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-afp.c b/packet-afp.c
index 4d4d45005c..2158959b7c 100644
--- a/packet-afp.c
+++ b/packet-afp.c
@@ -2,7 +2,7 @@
* Routines for afp packet dissection
* Copyright 2002, Didier Gautheron <dgautheron@magic.fr>
*
- * $Id: packet-afp.c,v 1.8 2002/04/28 22:16:50 guy Exp $
+ * $Id: packet-afp.c,v 1.9 2002/04/28 23:47:44 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -2254,7 +2254,7 @@ dissect_afp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
if (check_col(pinfo->cinfo, COL_INFO)) {
col_add_fstr(pinfo->cinfo, COL_INFO, "%s %s",
val_to_str(afp_command, CommandCode_vals,
- "Unknown command (0x%02x)"),
+ "Unknown command (%u)"),
aspinfo->reply ? "reply" : "request");
}