Change an assignment-in-an-if to a comparison.

svn path=/trunk/; revision=25112
This commit is contained in:
Jeff Morriss 2008-04-18 12:42:27 +00:00
parent 9f8f32ded8
commit 7ca7f149ce
1 changed files with 1 additions and 1 deletions

View File

@ -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 = "<span weight=\"bold\" size=\"x-large\">" "Sniffing the glue that holds the Internet together" "</span>";
} else {
message = "<span weight=\"bold\" size=\"x-large\">" "The World's Most Popular Network Protocol Analyzer" "</span>";