]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
res_rtp_multicast.c: Fix warning message typo. 21/3021/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:35:08 +0000 (13:35 -0500)
Change-Id: Ic9928208b9957e09866abe3d9649030942ec52b3

res/res_rtp_multicast.c

index 5c419d3e7cf5290e2fbb6ef091fe2076b5e52e8b..5a7b26b6a7083872f98361d77907052cd2ab05a9 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;
        }