aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-04-28 22:16:50 +0000
committerGuy Harris <guy@alum.mit.edu>2002-04-28 22:16:50 +0000
commit6ee5eebf6c2d6fe763056586af0013d0f9f6d2a4 (patch)
treeecc93f5491047180a203eb65a3b1423e9945bdc1
parent8c7276ba624eaa3e6699eda051483c7554d36102 (diff)
Mark requests as such in the Info column.
svn path=/trunk/; revision=5278
-rw-r--r--packet-afp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-afp.c b/packet-afp.c
index fddee25eaf..4d4d45005c 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.7 2002/04/28 22:08:50 guy Exp $
+ * $Id: packet-afp.c,v 1.8 2002/04/28 22:16:50 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -2252,10 +2252,10 @@ dissect_afp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
afp_command = request_val->command;
if (check_col(pinfo->cinfo, COL_INFO)) {
- col_add_fstr(pinfo->cinfo, COL_INFO, "%s%s",
+ col_add_fstr(pinfo->cinfo, COL_INFO, "%s %s",
val_to_str(afp_command, CommandCode_vals,
"Unknown command (0x%02x)"),
- aspinfo->reply ? " reply" : "");
+ aspinfo->reply ? "reply" : "request");
}
if (tree)