aboutsummaryrefslogtreecommitdiffstats
path: root/packet-arp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-03-10 00:05:20 +0000
committerGuy Harris <guy@alum.mit.edu>2002-03-10 00:05:20 +0000
commit9f6c9ba35bd38ffaf3dd02850a4c26789be629dc (patch)
tree4a405c6d8864bcc97ddbe3d0354f1b19ca4f244f /packet-arp.c
parent7d77975a145af88705fb131591f3188210ba8d59 (diff)
For Reverse ARP replies, the *target* hardware and protocol addresses
contain the interesting "XXX is at YYY" data; put that into the Info column. Thanks to Andreas Sikkema for catching this. svn path=/trunk/; revision=4906
Diffstat (limited to 'packet-arp.c')
-rw-r--r--packet-arp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/packet-arp.c b/packet-arp.c
index fcd12b8ed6..3fd6bf47b2 100644
--- a/packet-arp.c
+++ b/packet-arp.c
@@ -1,7 +1,7 @@
/* packet-arp.c
* Routines for ARP packet disassembly
*
- * $Id: packet-arp.c,v 1.50 2002/02/10 22:41:48 guy Exp $
+ * $Id: packet-arp.c,v 1.51 2002/03/10 00:05:20 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -752,6 +752,8 @@ dissect_arp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
col_add_fstr(pinfo->cinfo, COL_INFO, "Who is %s? Tell %s", tha_str, sha_str);
break;
case ARPOP_RREPLY:
+ col_add_fstr(pinfo->cinfo, COL_INFO, "%s is at %s", tha_str, tpa_str);
+ break;
case ARPOP_IREPLY:
col_add_fstr(pinfo->cinfo, COL_INFO, "%s is at %s", sha_str, spa_str);
break;