diff src/scrobbler/plugin.c @ 2050:2ffc6a69fcd1

string API calls -> vtable
author William Pitcock <nenolod@atheme.org>
date Sat, 13 Oct 2007 19:55:04 -0500
parents 5fa26178eaef
children cf4fa45ffd80
line wrap: on
line diff
--- a/src/scrobbler/plugin.c	Sun Oct 14 01:33:02 2007 +0300
+++ b/src/scrobbler/plugin.c	Sat Oct 13 19:55:04 2007 -0500
@@ -65,7 +65,7 @@
 static gboolean ishttp(const char *a)
 {
 	g_return_val_if_fail(a != NULL, FALSE);
-	return str_has_prefix_nocase(a, "http://") || str_has_prefix_nocase(a, "https://");
+	return aud_str_has_prefix_nocase(a, "http://") || aud_str_has_prefix_nocase(a, "https://");
 }
 
 static void hook_playback_begin(gpointer hook_data, gpointer user_data)