]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
res_rtp_multicast.c: Fix warning message typo. 20/3020/1
authorRichard Mudgett <rmudgett@digium.com>
Mon, 13 Jun 2016 18:33:53 +0000 (13:33 -0500)
committerRichard Mudgett <rmudgett@digium.com>
Mon, 13 Jun 2016 18:33:53 +0000 (13:33 -0500)
Change-Id: Ic9928208b9957e09866abe3d9649030942ec52b3

res/res_rtp_multicast.c

index 1b923474cff6ee08207f67603551f3585bd4159c..53bdf14a4cdaea6b1e50b8bed942b39b90ff36da 100644 (file)
@@ -226,7 +226,7 @@ static void set_ttl(int sock, const char *ttl_str)
        ast_debug(3, "Setting multicast TTL to %s\n", ttl_str);
 
        if (sscanf(ttl_str, "%30d", &ttl) < 1) {
-               ast_log(LOG_WARNING, "Inavlid multicast ttl option '%s'\n", ttl_str);
+               ast_log(LOG_WARNING, "Invalid multicast ttl option '%s'\n", ttl_str);
                return;
        }