# HG changeset patch # User nenolod # Date 1142194173 28800 # Node ID dfce5683ef459ed487c5e65aa2245d4387651f39 # Parent d2234cb542b3a29209b14649c1bcbc7d63a2fc51 [svn] that should have been strcasecmp diff -r d2234cb542b3 -r dfce5683ef45 audacious/prefswin.c --- a/audacious/prefswin.c Sun Mar 12 11:41:40 2006 -0800 +++ b/audacious/prefswin.c Sun Mar 12 12:09:33 2006 -0800 @@ -1837,7 +1837,7 @@ widget = glade_xml_get_widget(xml, "audversionlabel"); aud_version_string = g_string_new( "" ); - if (strncasecmp(svn_stamp, "exported")) + if (strcasecmp(svn_stamp, "exported")) { g_string_printf( aud_version_string , "%s (r%s) (%s@%s)" , "Audacious " PACKAGE_VERSION , svn_stamp , g_get_user_name() , g_get_host_name() );