]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Add missing argument to ast_carefulwrite
authorOlle Johansson <oej@edvina.net>
Thu, 18 May 2006 21:01:38 +0000 (21:01 +0000)
committerOlle Johansson <oej@edvina.net>
Thu, 18 May 2006 21:01:38 +0000 (21:01 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@28393 65c4cc65-6c06-0410-ace0-fbb531ad65f3

res/res_agi.c

index d1218e2881918b396ed8e40df8ee156bbf0adf0c..3a8b256b6266a5e3f0c6f5d699b7af2a974134a8 100644 (file)
@@ -117,7 +117,7 @@ static void agi_debug_cli(int fd, char *fmt, ...)
        } else {
                if (agidebug)
                        ast_verbose("AGI Tx >> %s", stuff);
-               ast_carefulwrite(fd, stuff, strlen(stuff), 100);
+               ast_carefulwrite(fd, stuff, strlen(stuff), 100, NULL);
                free(stuff);
        }
 }