aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>1999-10-22 08:30:04 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>1999-10-22 08:30:04 +0000
commit1a7be4638f77a2b91cedab8e2b88fc8733e22a55 (patch)
tree62b2f5a694b12779d3df88bd9f98fc64ea923fd4 /file.c
parent524377ff19b3c99921fa8b07a06205aba3c7df4d (diff)
Add support for Banyan Vines addresses to the code that handles the
"address" type. Use that in the Banyan Vines dissector. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@913 f5534014-38df-0310-8fa8-9805f1628bb7
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;
}