summaryrefslogtreecommitdiffstats
path: root/src/standard.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/standard.c')
-rw-r--r--src/standard.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/standard.c b/src/standard.c
index 26cd4a8..0b2bd17 100644
--- a/src/standard.c
+++ b/src/standard.c
@@ -15,7 +15,6 @@ extern struct mansession *sessions;
int _read(struct mansession *s, struct message *m) {
int res;
- if (debug) debugmsg("in standard_read module...");
for (;;) {
res = get_input(s, m->headers[m->hdrcount]);
@@ -46,7 +45,6 @@ int _read(struct mansession *s, struct message *m) {
int _write(struct mansession *s, struct message *m) {
int i;
- if (debug) debugmsg("in standard_write module...");
pthread_mutex_lock(&s->lock);
for (i=0; i<m->hdrcount; i++) {
ast_carefulwrite(s->fd, m->headers[i], strlen(m->headers[i]) , s->writetimeout);