summaryrefslogtreecommitdiff
path: root/main/asterisk.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/asterisk.c')
-rw-r--r--main/asterisk.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/main/asterisk.c b/main/asterisk.c
index 66967f515..0fd171169 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -3156,7 +3156,7 @@ int main(int argc, char *argv[])
FILE *f;
sigset_t sigs;
int num;
- int isroot = 1;
+ int isroot = 1, rundir_exists = 0;
char *buf;
const char *runuser = NULL, *rungroup = NULL;
char *remotesock = NULL;
@@ -3366,8 +3366,12 @@ int main(int argc, char *argv[])
/* It's common on some platforms to clear /var/run at boot. Create the
* socket file directory before we drop privileges. */
- if (mkdir(ast_config_AST_RUN_DIR, 0755) && errno != EEXIST) {
- ast_log(LOG_WARNING, "Unable to create socket file directory. Remote consoles will not be able to connect! (%s)\n", strerror(x));
+ if (mkdir(ast_config_AST_RUN_DIR, 0755)) {
+ if (errno == EEXIST) {
+ rundir_exists = 1;
+ } else {
+ ast_log(LOG_WARNING, "Unable to create socket file directory. Remote consoles will not be able to connect! (%s)\n", strerror(x));
+ }
}
#ifndef __CYGWIN__
@@ -3383,7 +3387,7 @@ int main(int argc, char *argv[])
ast_log(LOG_WARNING, "No such group '%s'!\n", rungroup);
exit(1);
}
- if (chown(ast_config_AST_RUN_DIR, -1, gr->gr_gid)) {
+ if (!rundir_exists && chown(ast_config_AST_RUN_DIR, -1, gr->gr_gid)) {
ast_log(LOG_WARNING, "Unable to chgrp run directory to %d (%s)\n", (int) gr->gr_gid, rungroup);
}
if (setgid(gr->gr_gid)) {