[Asterisk-cvs] asterisk/channels chan_misdn.c,1.1,1.2

kpfleming kpfleming
Tue Nov 1 17:12:17 CST 2005


Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv17004/channels

Modified Files:
	chan_misdn.c 
Log Message:
issue #5566


Index: chan_misdn.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_misdn.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- chan_misdn.c	31 Oct 2005 22:51:12 -0000	1.1
+++ chan_misdn.c	1 Nov 2005 22:04:14 -0000	1.2
@@ -47,7 +47,7 @@
 #include "chan_misdn_config.h"
 #include "isdn_lib.h"
 
-pthread_mutex_t release_lock_mutex;
+ast_mutex_t release_lock_mutex;
 
 #define release_lock ast_mutex_lock(&release_lock_mutex)
 #define release_unlock ast_mutex_unlock(&release_lock_mutex)
@@ -81,8 +81,7 @@
 
 struct chan_list {
[...1387 lines suppressed...]
-			chan_misdn_log(1, ch->bc->stack->port, "SETOPT: AST_DSP (for DTMF)\n");
+			chan_misdn_log(1, ch->bc->port, "SETOPT: AST_DSP (for DTMF)\n");
 			ch->ast_dsp=1;
 			break;
 
 		case 'p':
-			chan_misdn_log(1, ch->bc->stack->port, "SETOPT: callerpres: %s\n",&tok[1]);
+			chan_misdn_log(1, ch->bc->port, "SETOPT: callerpres: %s\n",&tok[1]);
 			/* CRICH: callingpres!!! */
 			if (strstr(tok,"allowed") ) {
 				ch->bc->pres=0;
@@ -3689,7 +3626,7 @@
 	}
 
 	if (ch->ast_dsp) {
-		chan_misdn_log(1,ch->bc->stack->port,"SETOPT: with AST_DSP we deactivate mISDN_dsp\n");
+		chan_misdn_log(1,ch->bc->port,"SETOPT: with AST_DSP we deactivate mISDN_dsp\n");
 		ch->bc->nodsp=1;
 		ch->bc->nojitter=1;
 	}




More information about the svn-commits mailing list