Fix no-tls warning typo (#1426)

Trivial log warning typo introduced in #1256 corrected.
This commit is contained in:
Jan Brasna 2024-02-10 05:15:19 +01:00 committed by GitHub
parent 460cfa38af
commit 9dfe8d5128
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3170,7 +3170,7 @@ int main(int argc, char **argv) {
}
if (use_web_admin && turn_params.no_tls) {
TURN_LOG_FUNC(TURN_LOG_LEVEL_WARNING, "CONFIG: WARNING: web-admin support not compatible witn --no-tls option.\n");
TURN_LOG_FUNC(TURN_LOG_LEVEL_WARNING, "CONFIG: WARNING: web-admin support not compatible with --no-tls option.\n");
use_web_admin = 0;
}