Merge branch 'arza-zara-umask'

pull/1616/head
irungentoo 2016-09-21 23:27:58 -04:00
commit 161ab46f88
No known key found for this signature in database
GPG Key ID: 10349DC9BED89E98
1 changed files with 2 additions and 2 deletions

View File

@ -29,6 +29,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
// toxcore
#include "../../../toxcore/LAN_discovery.h"
@ -156,8 +157,6 @@ void daemonize(LOG_BACKEND log_backend, char *pid_file_path)
exit(1);
}
// Change the file mode mask
umask(0);
// Change the current working directory
if ((chdir("/")) < 0) {
@ -175,6 +174,7 @@ void daemonize(LOG_BACKEND log_backend, char *pid_file_path)
int main(int argc, char *argv[])
{
umask(077);
char *cfg_file_path;
LOG_BACKEND log_backend;
bool run_in_foreground;