aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2003-04-11 03:28:31 +0000
committerjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2003-04-11 03:28:31 +0000
commit5bf9299f5b76e04633a58ce5eeff9488bf124bfd (patch)
tree78cd62b8c9a407c0495955233cb59df487fb6ed0 /channels
parent15220945d4c76ae5c09134608364d30c9b809237 (diff)
add some debug for testing
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@818 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rwxr-xr-xchannels/h323/chan_h323.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/channels/h323/chan_h323.c b/channels/h323/chan_h323.c
index c7d821714..0f868029f 100755
--- a/channels/h323/chan_h323.c
+++ b/channels/h323/chan_h323.c
@@ -983,8 +983,11 @@ int setup_incoming_call(call_details_t cd)
if (strlen(user->accountcode)) {
strncpy(p->accountcode, user->accountcode, sizeof(p->accountcode)-1);
+ printf("ACCOUNT CODE: %s", p->accountcode);
+ } else {
+ printf("NO ACCOUNT CODE IN USERS");
}
-
+
/* Increment the usage counter */
user->inUse++;
}