changeset 824:dfce5683ef45 trunk

[svn] that should have been strcasecmp
author nenolod
date Sun, 12 Mar 2006 12:09:33 -0800
parents d2234cb542b3
children 7b903bd39180
files audacious/prefswin.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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() );