From 322326058e7ad82eeb971673895f71bcc3230244 Mon Sep 17 00:00:00 2001 From: murf Date: Thu, 21 Dec 2006 19:44:20 +0000 Subject: a quick fix to app_sms.c to get rid of cursed compiler warnings so I can compile under --enable-dev-mode git-svn-id: http://svn.digium.com/svn/asterisk/trunk@48767 f38db490-d61c-443f-a65b-d21fe96a405b --- main/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/file.c') diff --git a/main/file.c b/main/file.c index c5fb522d3..f67fbec29 100644 --- a/main/file.c +++ b/main/file.c @@ -214,7 +214,7 @@ static int copy(const char *infile, const char *outfile) ast_log(LOG_WARNING, "Unable to open %s in read-only mode\n", infile); return -1; } - if ((ofd = open(outfile, O_WRONLY | O_TRUNC | O_CREAT, 0600)) < 0) { + if ((ofd = open(outfile, O_WRONLY | O_TRUNC | O_CREAT, AST_FILE_MODE)) < 0) { ast_log(LOG_WARNING, "Unable to open %s in write-only mode\n", outfile); close(ifd); return -1; -- cgit v1.2.3