aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-10-21 15:21:42 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-10-21 15:21:42 +0000
commitf82520b9da918bdf6499aca9d5a715a0654b96c0 (patch)
treeefd8080b0380bb34552b68d63ca7912c3b6956c3 /apps
parenta67170f82ced0c7fd7ecb364dceec52183efdfbf (diff)
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) ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@151372 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_mixmonitor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_mixmonitor.c b/apps/app_mixmonitor.c
index 066103b3b..00adef14a 100644
--- a/apps/app_mixmonitor.c
+++ b/apps/app_mixmonitor.c
@@ -167,7 +167,7 @@ static void *mixmonitor_thread(void *obj)
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;
}