mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2025-02-02 15:07:36 -05:00
fixed small bug where if using fallbacks and the main mount was not connected, icecast was not connecting client to the fallback mount.
svn path=/trunk/icecast/; revision=5780
This commit is contained in:
parent
d668d4dfa6
commit
610a2c022a
@ -168,7 +168,7 @@ static source_t *source_find_mount_recursive(const char *mount, int depth)
|
||||
thread_mutex_unlock(&(config_locks()->mounts_lock));
|
||||
|
||||
if(fallback_mount != NULL) {
|
||||
return source_find_mount_recursive(mount, depth+1);
|
||||
return source_find_mount_recursive(fallback_mount, depth+1);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user