aboutsummaryrefslogtreecommitdiffstats
path: root/channels/h323/chan_h323.c
diff options
context:
space:
mode:
authorjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2003-03-31 17:09:33 +0000
committerjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2003-03-31 17:09:33 +0000
commit36e0378731b37c8f15aae82341823764e0c01838 (patch)
tree9ead41c8c04711008d623c9e497d9d4aad10101d /channels/h323/chan_h323.c
parent42997e9c06169dab5c85221077336aa69fb6ee83 (diff)
remove debug
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@729 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/h323/chan_h323.c')
-rwxr-xr-xchannels/h323/chan_h323.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/channels/h323/chan_h323.c b/channels/h323/chan_h323.c
index 12b64dadb..0d6fbe48b 100755
--- a/channels/h323/chan_h323.c
+++ b/channels/h323/chan_h323.c
@@ -651,8 +651,6 @@ static struct ast_channel *oh323_new(struct oh323_pvt *i, int state, const char
if (strlen(i->callerid))
tmp->callerid = strdup(i->callerid);
if (state != AST_STATE_DOWN) {
- printf ("oh323_new EXTEN: %s\n", tmp->exten);
- printf ("oh323_new CONTEXT: %s\n", tmp->context);
if (ast_pbx_start(tmp)) {
ast_log(LOG_WARNING, "Unable to start PBX on %s\n", tmp->name);
ast_hangup(tmp);
@@ -889,8 +887,6 @@ int create_connection(unsigned call_reference)
int setup_incoming_call(call_details_t cd)
{
-
- ast_log(LOG_DEBUG, "default_context [%s]\n", default_context);
struct oh323_pvt *p = NULL;
struct ast_channel *c = NULL;
@@ -990,8 +986,6 @@ int setup_incoming_call(call_details_t cd)
}
}
- printf ("CONTEXT: [%s]\n", p->context);
- printf ("EXTEN: [%s]\n", p->exten);
/* allocate a channel and tell asterisk about it */
c = oh323_new(p, AST_STATE_RINGING, cd.call_token);