summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2008-02-12 15:16:39 +0000
committerRussell Bryant <russell@russellbryant.com>2008-02-12 15:16:39 +0000
commitd42f6f7ce56c6c5d5a0325f41b3a5d981d86b395 (patch)
treeb1c877ae2befd3374e6bcf066ada78a894ac988e /main
parent60de470a7738f98a2c64623981bcfa380077a5c5 (diff)
Fix build on *BSD. These permissions constants are not available there.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@103387 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main')
-rw-r--r--main/manager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/manager.c b/main/manager.c
index a5319e7e0..226aa8548 100644
--- a/main/manager.c
+++ b/main/manager.c
@@ -1425,7 +1425,7 @@ static int action_createconfig(struct mansession *s, const struct message *m)
ast_str_set(&filepath, 0, "%s/", ast_config_AST_CONFIG_DIR);
ast_str_append(&filepath, 0, "%s", fn);
- if ((fd = open(filepath->str, O_CREAT | O_EXCL, S_IRUSR | S_IWUSR | S_IRGRP| S_IROTH)) != -1) {
+ if ((fd = open(filepath->str, O_CREAT | O_EXCL, 0744)) != -1) {
close(fd);
astman_send_ack(s, m, "New configuration file created successfully");
} else