summaryrefslogtreecommitdiff
path: root/gtk/follow_dlg.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-01-26 22:34:55 +0000
committerGuy Harris <guy@alum.mit.edu>2004-01-26 22:34:55 +0000
commit5633166fbe82675cb29bef46af4fc01f70c90a65 (patch)
tree22e5cd33ff94d2df98fb004dffaba72824c01f02 /gtk/follow_dlg.c
parent0c81a75ed3d24f901fcf8dfc397525357f0d7b8a (diff)
downloadwireshark-5633166fbe82675cb29bef46af4fc01f70c90a65.tar.gz
Newlines in filter strings are a Bad Idea, as they don't display well in
the title or contents of the filtering progress bar window and don't work very well in files such as "recent" or "dfilters". svn path=/trunk/; revision=9869
Diffstat (limited to 'gtk/follow_dlg.c')
-rw-r--r--gtk/follow_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/follow_dlg.c b/gtk/follow_dlg.c
index 0b367e3210..efa9770aac 100644
--- a/gtk/follow_dlg.c
+++ b/gtk/follow_dlg.c
@@ -1,6 +1,6 @@
/* follow_dlg.c
*
- * $Id: follow_dlg.c,v 1.39 2004/01/25 18:51:25 ulfl Exp $
+ * $Id: follow_dlg.c,v 1.40 2004/01/26 22:34:55 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -224,7 +224,7 @@ follow_stream_cb(GtkWidget * w, gpointer data _U_)
/* append the negation */
if(strlen(previous_filter)) {
- sprintf(follow_info->filter_out_filter, "%s \nand !(%s)", previous_filter, follow_filter);
+ sprintf(follow_info->filter_out_filter, "%s and !(%s)", previous_filter, follow_filter);
} else {
sprintf(follow_info->filter_out_filter, "!(%s)", follow_filter);
}