summaryrefslogtreecommitdiffstats
path: root/src/standard.c
diff options
context:
space:
mode:
authorDavid Troy <dave@popvox.com>2006-04-03 19:39:36 +0000
committerDavid Troy <dave@popvox.com>2006-04-03 19:39:36 +0000
commit7122b49be0d135619e6eb848798b4bc620a9b808 (patch)
treed821e24702e9e67b28fd6143504b9fa028c57276 /src/standard.c
parentecc49089c697a2cb7331358def5ce7640fae65bf (diff)
downloadastmanproxy-7122b49be0d135619e6eb848798b4bc620a9b808.tar.gz
astmanproxy-7122b49be0d135619e6eb848798b4bc620a9b808.tar.xz
astmanproxy-7122b49be0d135619e6eb848798b4bc620a9b808.zip
git-svn-id: http://svncommunity.digium.com/svn/astmanproxy/branches/1.20pre@74 f02b47b9-160a-0410-81a6-dc3441afb0ec
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);