[svn-commits] tilghman: branch 1.6.1 r151372 - in /branches/1.6.1: ./ apps/app_mixmonitor.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Oct 21 10:21:42 CDT 2008


Author: tilghman
Date: Tue Oct 21 10:21:42 2008
New Revision: 151372

URL: http://svn.digium.com/view/asterisk?view=rev&rev=151372
Log:
Merged revisions 151371 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r151371 | tilghman | 2008-10-21 10:20:50 -0500 (Tue, 21 Oct 2008) | 5 lines
  
  Default file modes should always be full read and write, to allow the system
  administrator to make the decision of what permissions will actually be given,
  through the use of the process umask.
  (Closes issue# 13751)
........

Modified:
    branches/1.6.1/   (props changed)
    branches/1.6.1/apps/app_mixmonitor.c

Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.1/apps/app_mixmonitor.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/apps/app_mixmonitor.c?view=diff&rev=151372&r1=151371&r2=151372
==============================================================================
--- branches/1.6.1/apps/app_mixmonitor.c (original)
+++ branches/1.6.1/apps/app_mixmonitor.c Tue Oct 21 10:21:42 2008
@@ -167,7 +167,7 @@
 				else
 					ext = "raw";
 				
-				if (!(fs = ast_writefile(mixmonitor->filename, ext, NULL, oflags, 0, 0644))) {
+				if (!(fs = ast_writefile(mixmonitor->filename, ext, NULL, oflags, 0, 0666))) {
 					ast_log(LOG_ERROR, "Cannot open %s.%s\n", mixmonitor->filename, ext);
 					errflag = 1;
 				}




More information about the svn-commits mailing list