diff --git a/res/res_rtp_asterisk.c b/res/res_rtp_asterisk.c index 898bc895fa2a039200e9806c9155d4348b78d8bc..3b276505930d6754ed120bfc458c454de2930db2 100644 --- a/res/res_rtp_asterisk.c +++ b/res/res_rtp_asterisk.c @@ -495,7 +495,7 @@ static void ast_rtp_ice_add_remote_candidate(struct ast_rtp_instance *instance, struct ast_rtp_engine_ice_candidate *remote_candidate; /* ICE sessions only support UDP candidates */ - if (strcmp(candidate->transport, "UDP")) { + if (strcasecmp(candidate->transport, "udp")) { return; }