aboutsummaryrefslogtreecommitdiffstats
path: root/packet-udp.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>1998-11-17 04:29:13 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>1998-11-17 04:29:13 +0000
commit470fffbe32e31e4c164477cd823fd3b92780e325 (patch)
tree750ab11a6661c391b126d4ce990b7fc01cb98d46 /packet-udp.c
parent69fa1398275aa35864ebd22acfc7dfe3f0151c15 (diff)
* Added column formatting functionality.
* Added check_col(), add_col_str() and add_col_fmt() to replace references to ft->win_info. * Added column prefs handling code. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@97 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-udp.c')
-rw-r--r--packet-udp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/packet-udp.c b/packet-udp.c
index cec5c5b9ee..8ac5c3ff24 100644
--- a/packet-udp.c
+++ b/packet-udp.c
@@ -1,7 +1,7 @@
/* packet-udp.c
* Routines for UDP packet disassembly
*
- * $Id: packet-udp.c,v 1.6 1998/10/14 08:47:16 guy Exp $
+ * $Id: packet-udp.c,v 1.7 1998/11/17 04:29:07 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -57,11 +57,11 @@ dissect_udp(const u_char *pd, int offset, frame_data *fd, GtkTree *tree) {
uh_ulen = ntohs(uh.uh_ulen);
uh_sum = ntohs(uh.uh_sum);
- if (fd->win_info[COL_NUM]) {
- strcpy(fd->win_info[COL_PROTOCOL], "UDP");
- sprintf(fd->win_info[COL_INFO], "Source port: %s Destination port: %s",
+ if (check_col(fd, COL_PROTOCOL))
+ col_add_str(fd, COL_PROTOCOL, "UDP");
+ if (check_col(fd, COL_INFO))
+ col_add_fstr(fd, COL_INFO, "Source port: %s Destination port: %s",
get_udp_port(uh_sport), get_udp_port(uh_dport));
- }
if (tree) {
ti = add_item_to_tree(GTK_WIDGET(tree), offset, 8,