[Asterisk-cvs] asterisk/channels chan_h323.c,1.90,1.91

jeremy at lists.digium.com jeremy at lists.digium.com
Thu Nov 11 15:33:28 CST 2004


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

Modified Files:
	chan_h323.c 
Log Message:
Use passed dest value, for the moment. A better fix is being worked on

Index: chan_h323.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_h323.c,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -d -r1.90 -r1.91
--- chan_h323.c	11 Nov 2004 20:10:45 -0000	1.90
+++ chan_h323.c	11 Nov 2004 20:34:46 -0000	1.91
@@ -462,8 +462,8 @@
         	}
 	}       
 	pvt->outgoing = 1;
-	ast_log(LOG_DEBUG, "Placing outgoing call to %s:%d\n", called_addr, pvt->options.port);
-	res = h323_make_call(called_addr, &(pvt->cd), pvt->options);
+	ast_log(LOG_DEBUG, "Placing outgoing call to %s:%d\n", dest, pvt->options.port);
+	res = h323_make_call(dest, &(pvt->cd), pvt->options);
 	if (res) {
 		ast_log(LOG_NOTICE, "h323_make_call failed(%s)\n", c->name);
 		return -1;




More information about the svn-commits mailing list