aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-10-22 08:30:04 +0000
committerGuy Harris <guy@alum.mit.edu>1999-10-22 08:30:04 +0000
commit645acd5c15b0a09dacf11d52463a6ec4533c68de (patch)
tree62b2f5a694b12779d3df88bd9f98fc64ea923fd4 /file.c
parent5686eb0e1bcf05cf2f6aef42ff84504f1dc7e46b (diff)
downloadwireshark-645acd5c15b0a09dacf11d52463a6ec4533c68de.tar.gz
wireshark-645acd5c15b0a09dacf11d52463a6ec4533c68de.tar.bz2
wireshark-645acd5c15b0a09dacf11d52463a6ec4533c68de.zip
Add support for Banyan Vines addresses to the code that handles the
"address" type. Use that in the Banyan Vines dissector. svn path=/trunk/; revision=913
Diffstat (limited to 'file.c')
-rw-r--r--file.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/file.c b/file.c
index 9c33a81679..d8e920c183 100644
--- a/file.c
+++ b/file.c
@@ -1,7 +1,7 @@
/* file.c
* File I/O routines
*
- * $Id: file.c,v 1.111 1999/10/22 08:11:39 guy Exp $
+ * $Id: file.c,v 1.112 1999/10/22 08:30:02 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -641,6 +641,11 @@ col_set_addr(frame_data *fd, int col, address *addr, gboolean is_res)
COL_MAX_LEN);
break;
+ case AT_VINES:
+ strncpy(fd->cinfo->col_data[col], vines_addr_to_str(&addr->data[0]),
+ COL_MAX_LEN);
+ break;
+
default:
break;
}