summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--qarshd.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/qarshd.c b/qarshd.c
index 84be036..8cca3b5 100644
--- a/qarshd.c
+++ b/qarshd.c
@@ -71,11 +71,7 @@ setup_user(char *user, char *group)
/* setuid is last so we can still do setgid and initgroups */
setuid(pw->pw_uid);
- if (chdir(pw->pw_dir) < 0) {
- syslog(LOG_WARNING, "Unable to chdir() to %s: %s\n",
- pw->pw_dir, strerror(errno));
- return 0;
- }
+ if (pw->pw_dir) chdir(pw->pw_dir);
return 1;
}