1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-23 06:25:24 +00: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:
oddsock 2004-01-21 15:19:48 +00:00
parent d668d4dfa6
commit 610a2c022a

View File

@ -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);
}
}