Fix typo in goto label name

This commit is contained in:
Julien BLACHE 2010-09-17 12:21:05 +02:00
parent d5d1a2d3cb
commit aa57931879

View File

@ -3066,7 +3066,7 @@ raop_device_cb(const char *name, const char *type, const char *domain, const cha
{
DPRINTF(E_LOG, L_PLAYER, "AirTunes %s: no am field in TXT record!\n", name);
goto no_ma;
goto no_am;
}
avahi_string_list_get_pair(p, &key, &val, &valsz);
@ -3075,7 +3075,7 @@ raop_device_cb(const char *name, const char *type, const char *domain, const cha
{
DPRINTF(E_LOG, L_PLAYER, "AirTunes %s: am has no value\n", name);
goto no_ma;
goto no_am;
}
if (strncmp(val, "AppleTV", strlen("AppleTV")) == 0)
@ -3083,7 +3083,7 @@ raop_device_cb(const char *name, const char *type, const char *domain, const cha
avahi_free(val);
no_ma:
no_am:
pthread_mutex_lock(&dev_lck);
for (rd = dev_list; rd; rd = rd->next)