1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-22 04:15:54 -04:00

Fix: Corrected copy & paste error

This commit is contained in:
Philipp Schafft 2023-03-11 16:23:04 +00:00
parent 28b4ff2d55
commit 2728261b99

View File

@ -661,10 +661,10 @@ int auth_get_url_auth(auth_t *authenticator, config_options_t *options)
util_replace_string(&(url_info->timelimit_header), options->value);
} else if (strcmp(options->name, "header_auth") == 0) {
util_replace_string(&(url_info->header_auth), options->value);
util_strtolower(url_info->header_message);
util_strtolower(url_info->header_auth);
} else if (strcmp(options->name, "header_timelimit") == 0) {
util_replace_string(&(url_info->header_timelimit), options->value);
util_strtolower(url_info->header_message);
util_strtolower(url_info->header_timelimit);
} else if (strcmp(options->name, "header_message") == 0) {
util_replace_string(&(url_info->header_message), options->value);
util_strtolower(url_info->header_message);