[Asterisk-cvs] asterisk/apps app_mp3.c,1.13,1.14 app_nbscat.c,1.2,1.3 app_voicemail.c,1.69,1.70
markster at lists.digium.com
markster at lists.digium.com
Mon Mar 29 03:22:33 CST 2004
- Previous message: [Asterisk-cvs] libpri testprilib.c,NONE,1.1 Makefile,1.7,1.8 libpri.h,1.19,1.20 pri.c,1.11,1.12 pri_internal.h,1.6,1.7 pri_q921.h,1.4,1.5 q921.c,1.7,1.8
- Next message: [Asterisk-cvs] asterisk/channels chan_sip.c,1.320,1.321
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv26365/apps
Modified Files:
app_mp3.c app_nbscat.c app_voicemail.c
Log Message:
Small SIP fix, voicemail fix, and some delivery fixes on new apps
Index: app_mp3.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_mp3.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- app_mp3.c 27 Mar 2004 06:50:12 -0000 1.13
+++ app_mp3.c 29 Mar 2004 08:20:35 -0000 1.14
@@ -170,6 +170,8 @@
myf.f.mallocd = 0;
myf.f.offset = AST_FRIENDLY_OFFSET;
myf.f.src = __PRETTY_FUNCTION__;
+ myf.f.delivery.tv_sec = 0;
+ myf.f.delivery.tv_usec = 0;
myf.f.data = myf.frdata;
if (ast_write(chan, &myf.f) < 0) {
res = -1;
Index: app_nbscat.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_nbscat.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- app_nbscat.c 27 Mar 2004 07:34:37 -0000 1.2
+++ app_nbscat.c 29 Mar 2004 08:20:35 -0000 1.3
@@ -150,6 +150,8 @@
myf.f.subclass = AST_FORMAT_SLINEAR;
myf.f.datalen = res;
myf.f.samples = res / 2;
+ myf.f.delivery.tv_usec = 0;
+ myf.f.delivery.tv_sec = 0;
myf.f.mallocd = 0;
myf.f.offset = AST_FRIENDLY_OFFSET;
myf.f.src = __PRETTY_FUNCTION__;
Index: app_voicemail.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_voicemail.c,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -d -r1.69 -r1.70
--- app_voicemail.c 27 Mar 2004 06:50:12 -0000 1.69
+++ app_voicemail.c 29 Mar 2004 08:20:35 -0000 1.70
@@ -849,7 +849,7 @@
time_t t;
struct tm tm;
struct vm_zone *the_zone = NULL;
- p = popen(mailcmd, "w");
+ pfd = mkstemp(tmp);
if (pfd > -1) {
p = fdopen(pfd, "w");
- Previous message: [Asterisk-cvs] libpri testprilib.c,NONE,1.1 Makefile,1.7,1.8 libpri.h,1.19,1.20 pri.c,1.11,1.12 pri_internal.h,1.6,1.7 pri_q921.h,1.4,1.5 q921.c,1.7,1.8
- Next message: [Asterisk-cvs] asterisk/channels chan_sip.c,1.320,1.321
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the svn-commits
mailing list