aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-12 13:54:10 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-12 13:54:10 +0000
commitae2d1543f2dfd6833d84c1cef442172c7b06ee17 (patch)
tree217d817a6525bafc7759955c597eba0e86f272a5 /res
parent385ad924dd71eb8cc5c9869c0e14c4c398d6bcf1 (diff)
remove some more bad examples of using printf
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@37419 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_agi.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index 96de36b83..e9b275ed0 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -1823,11 +1823,6 @@ static int agi_handle_command(struct ast_channel *chan, AGI *agi, char *buf)
argc = MAX_ARGS;
parse_args(buf, &argc, argv);
-#if 0
- { int x;
- for (x=0; x<argc; x++)
- fprintf(stderr, "Got Arg%d: %s\n", x, argv[x]); }
-#endif
c = find_command(argv, 0);
if (c) {
res = c->handler(chan, agi, argc, argv);