aboutsummaryrefslogtreecommitdiffstats
path: root/epan/prefs.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2010-11-04 11:37:06 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2010-11-04 11:37:06 +0000
commit9ef270b98b685617300be97e7705bdd05380cc2f (patch)
treefec9279700a6ca475b30c876fc1e2e91b9103abf /epan/prefs.c
parent45f615a632fb1e16ac94a5cb83c438882b093dee (diff)
Support empty column titles.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34777 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/prefs.c')
-rw-r--r--epan/prefs.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/epan/prefs.c b/epan/prefs.c
index f98ed4194b..c19b596838 100644
--- a/epan/prefs.c
+++ b/epan/prefs.c
@@ -2007,13 +2007,6 @@ set_pref(gchar *pref_name, gchar *value, void *private_data _U_,
/* Check to make sure all column formats are valid. */
col_l_elt = g_list_first(col_l);
while(col_l_elt) {
- /* Make sure the title isn't empty. */
- if (strcmp(col_l_elt->data, "") == 0) {
- /* It is. */
- prefs_clear_string_list(col_l);
- return PREFS_SET_SYNTAX_ERR;
- }
-
/* Go past the title. */
col_l_elt = col_l_elt->next;