Hello,
I think there is a bug in the ann_b2b application where user specific
audio files are not used as expected.
Here is a diff showing what I think the relevant lines should be.
diff -u AnnounceB2B.cpp.new AnnounceB2B.cpp
--- AnnounceB2B.cpp.new 2008-07-31 14:09:25.000000000 +0800
+++ AnnounceB2B.cpp 2008-07-31 14:10:18.000000000 +0800
@@ -83,12 +83,12 @@
DBG("trying '%s'\n",announce_file.c_str());
if(file_exists(announce_file))
- new AnnounceCallerDialog(announce_file);
+ return new AnnounceCallerDialog(announce_file);
announce_file = announce_path + req.user + ".wav";
DBG("trying '%s'\n",announce_file.c_str());
if(file_exists(announce_file))
- new AnnounceCallerDialog(announce_file);
+ return new AnnounceCallerDialog(announce_file);
announce_file = AnnouncePath + AnnounceFile;
return new AnnounceCallerDialog(announce_file);
_______________________________________________
Sems mailing list
[email protected]
http://lists.iptel.org/mailman/listinfo/sems