mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-28 16:15:57 -05:00
Fix typo in goto label name
This commit is contained in:
parent
d5d1a2d3cb
commit
aa57931879
@ -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);
|
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);
|
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);
|
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)
|
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);
|
avahi_free(val);
|
||||||
|
|
||||||
no_ma:
|
no_am:
|
||||||
pthread_mutex_lock(&dev_lck);
|
pthread_mutex_lock(&dev_lck);
|
||||||
|
|
||||||
for (rd = dev_list; rd; rd = rd->next)
|
for (rd = dev_list; rd; rd = rd->next)
|
||||||
|
Loading…
Reference in New Issue
Block a user