From 7ca7f149ce7496c3cfe3ba0cdb2e522464a9ad19 Mon Sep 17 00:00:00 2001 From: Jeff Morriss Date: Fri, 18 Apr 2008 12:42:27 +0000 Subject: [PATCH] Change an assignment-in-an-if to a comparison. svn path=/trunk/; revision=25112 --- gtk/main_welcome.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/main_welcome.c b/gtk/main_welcome.c index 6b07c9f042..a416f4a9e2 100644 --- a/gtk/main_welcome.c +++ b/gtk/main_welcome.c @@ -169,7 +169,7 @@ welcome_header_new(void) icon = xpm_to_widget_from_parent(top_level, wssplash_xpm); gtk_box_pack_start(GTK_BOX(item_hb), icon, FALSE, FALSE, 10); - if ((now->tm_mon == 3 && now->tm_mday == 1) || (now->tm_mon = 6 && now->tm_mday == 14)) { + if ((now->tm_mon == 3 && now->tm_mday == 1) || (now->tm_mon == 6 && now->tm_mday == 14)) { message = "" "Sniffing the glue that holds the Internet together" ""; } else { message = "" "The World's Most Popular Network Protocol Analyzer" "";