aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_modem.c
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 /channels/chan_modem.c
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 'channels/chan_modem.c')
-rw-r--r--channels/chan_modem.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/channels/chan_modem.c b/channels/chan_modem.c
index 8e5e8d79f..6718db141 100644
--- a/channels/chan_modem.c
+++ b/channels/chan_modem.c
@@ -354,9 +354,6 @@ int ast_modem_expect(struct ast_modem_pvt *p, char *result, int timeout)
}
/* Read a response */
fgets(p->response, sizeof(p->response), p->f);
-#if 0
- fprintf(stderr, "Modem said: %s", p->response);
-#endif
if (!strncasecmp(p->response, result, strlen(result)))
return 0;
} while(timeout > 0);