diff options
author | Stephen Fisher <steve@stephen-fisher.com> | 2008-02-12 08:09:22 +0000 |
---|---|---|
committer | Stephen Fisher <steve@stephen-fisher.com> | 2008-02-12 08:09:22 +0000 |
commit | 5e893a8b1c6707a8526e9a60168e5dbebe567b05 (patch) | |
tree | e23190decbf760601116e1506ba3bee7956afb1e /epan/column.c | |
parent | 0a85a9e4c6016b0cd68b590990a927f4bb4d4fce (diff) | |
download | wireshark-5e893a8b1c6707a8526e9a60168e5dbebe567b05.tar.gz wireshark-5e893a8b1c6707a8526e9a60168e5dbebe567b05.tar.bz2 wireshark-5e893a8b1c6707a8526e9a60168e5dbebe567b05.zip |
Revert commit 24308 until I can get it to compile on Windows/Linux/Solaris
(strangely, it compiled fine on my MacOS X machine).
svn path=/trunk/; revision=24309
Diffstat (limited to 'epan/column.c')
-rw-r--r-- | epan/column.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/epan/column.c b/epan/column.c index 45cf19e78f..7afaded3e3 100644 --- a/epan/column.c +++ b/epan/column.c @@ -105,8 +105,7 @@ col_format_to_string(gint fmt) { "%C", "%l", "%a", - "%F", - "%Cus" + "%F" }; if (fmt < 0 || fmt >= NUM_COL_FMTS) @@ -175,8 +174,7 @@ static const gchar *dlist[NUM_COL_FMTS] = { "Frame Relay DLCI", /* COL_FR_DLCI */ "GPRS BSSGP TLLI", /* COL_BSSGP_TLLI */ "Expert Info Severity", /* COL_EXPERT */ - "Frequency/Channel", /* COL_FREQ_CHAN */ - "Custom" /* COL_CUSTOM */ + "Frequency/Channel" /* COL_FREQ_CHAN */ }; const gchar * @@ -301,9 +299,6 @@ get_column_format_matches(gboolean *fmt_list, gint format) { case COL_FREQ_CHAN: fmt_list[COL_FREQ_CHAN] = TRUE; break; - case COL_CUSTOM: - fmt_list[COL_CUSTOM] = TRUE; - break; default: break; } |