mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
open(2) needs a mode argument when O_CREAT is specified.
(Closes issue #12083) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@104534 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -67,7 +67,7 @@ int main(int argc, char *argv[])
|
||||
/* Update the modification times (checked from Asterisk) */
|
||||
if (utime(argv[1], NULL)) {
|
||||
/* Recreate the file if it doesn't exist */
|
||||
if ((fd = open(argv[1], O_RDWR | O_TRUNC | O_CREAT)) > -1)
|
||||
if ((fd = open(argv[1], O_RDWR | O_TRUNC | O_CREAT, 0777)) > -1)
|
||||
close(fd);
|
||||
else
|
||||
exit(1);
|
||||
|
Reference in New Issue
Block a user