Add missing argument to ast_carefulwrite

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@28393 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Olle Johansson
2006-05-18 21:01:38 +00:00
parent 1ad7b94144
commit e274a70d52

View 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);
}
}