Archived
14
0
Fork 0

Add missing argument to ast_carefulwrite

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@28393 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
oej 2006-05-18 21:01:38 +00:00
parent e36d23b2fd
commit 8a515c92e7

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