diff options
author | Gerald Combs <gerald@wireshark.org> | 1999-01-04 01:31:18 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 1999-01-04 01:31:18 +0000 |
commit | b0fe085dc321962b73f60065c4fccd0c84f5f995 (patch) | |
tree | 4ba25a236a2bda049b01e2a08ba1da8216661cb0 /column.c | |
parent | efa3b6ff41861c8041d1415339af9b7983e65921 (diff) | |
download | wireshark-b0fe085dc321962b73f60065c4fccd0c84f5f995.tar.gz wireshark-b0fe085dc321962b73f60065c4fccd0c84f5f995.tar.bz2 wireshark-b0fe085dc321962b73f60065c4fccd0c84f5f995.zip |
* Final commit for version 0.5.1
* Added RPM .spec file (Martin Maciaszek)
* Added Martin to AUTHORS
svn path=/trunk/; revision=149
Diffstat (limited to 'column.c')
-rw-r--r-- | column.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,7 +1,7 @@ /* column.c * Routines for handling column preferences * - * $Id: column.c,v 1.7 1998/12/29 04:05:33 gerald Exp $ + * $Id: column.c,v 1.8 1999/01/04 01:31:17 gerald Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -83,8 +83,9 @@ col_format_to_string(gint fmt) { description */ static gchar * col_format_desc(gint fmt) { - gchar *dlist[] = { "Number", "Time", "Relative time", "Absolute time", - "Delta time", "Source address", "Src addr (resolved)", + gchar *dlist[] = { "Number", "Time (command line specified)", + "Relative time", "Absolute time", "Delta time", + "Source address", "Src addr (resolved)", "Src addr (unresolved)", "Hardware src addr", "Hw src addr (resolved)", "Hw src addr (unresolved)", "Network src addr", "Net scr addr (resolved)", @@ -348,7 +349,7 @@ col_format_to_pref_str() { if ((fmt_len + cur_pos) > MAX_FMT_PREF_LINE_LEN) { cur_len--; cur_pos = 0; - pref_str[cur_len] = '\n'; cur_len++; + pref_str[cur_len] = '\n'; cur_len++; pref_str[cur_len] = '\t'; cur_len++; } sprintf(&pref_str[cur_len], "\"%s\", ", cfmt->title); |