|
From: <ma...@us...> - 2007-10-31 13:10:36
|
Revision: 1249
http://iaxclient.svn.sourceforge.net/iaxclient/?rev=1249&view=rev
Author: matben
Date: 2007-10-31 06:10:33 -0700 (Wed, 31 Oct 2007)
Log Message:
-----------
* Problems reported using selected_call() and select_call(). This issue needs better
understanding of the underlying API before switching them on again, if ever.
Modified Paths:
--------------
trunk/contrib/tcl/iaxclient.c
Modified: trunk/contrib/tcl/iaxclient.c
===================================================================
--- trunk/contrib/tcl/iaxclient.c 2007-10-30 21:07:50 UTC (rev 1248)
+++ trunk/contrib/tcl/iaxclient.c 2007-10-31 13:10:33 UTC (rev 1249)
@@ -600,7 +600,9 @@
}
if (objc == 2) {
- line = iaxc_selected_call();
+ // Problems reported coming from this line.
+ // If including it again you must be very sure of exactly what you do!
+ //line = iaxc_selected_call();
}
if (objc == 3) {
@@ -614,7 +616,9 @@
if (result == TCL_OK) {
iaxc_call(num);
- iaxc_select_call(line);
+ // Problems reported coming from this line.
+ // If including it again you must be very sure of exactly what you do!
+ //iaxc_select_call(line);
}
return result;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|