From 5633166fbe82675cb29bef46af4fc01f70c90a65 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Mon, 26 Jan 2004 22:34:55 +0000 Subject: 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 --- gtk/follow_dlg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gtk/follow_dlg.c') 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 @@ -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); } -- cgit v1.2.1