aboutsummaryrefslogtreecommitdiffstats
path: root/packet-afp.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-04-28 23:47:44 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-04-28 23:47:44 +0000
commit795aec3d5bca16ef49a5784b6716073e3611555f (patch)
treedc3bd9eb8107794b733655c3b3931e6be0a40093 /packet-afp.c
parent2d1366380a0dc2785d2d924cea592b95aef94c67 (diff)
Show unknown AFP command codes in decimal in the summary line, as we
show them in decimal in the protocol tree. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5282 f5534014-38df-0310-8fa8-9805f1628bb7
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");
}