summaryrefslogtreecommitdiffstats
path: root/qarshd.c
diff options
context:
space:
mode:
authorDean Jansa <djansa@redhat.com>2008-06-27 16:28:54 +0000
committerNathan Straz <nstraz@redhat.com>2008-09-23 09:37:47 -0400
commit055c473f917703e7e73581a915e770f595dd76b4 (patch)
tree183736e8c1be3582d7c09697c7c24437ecbdfaf9 /qarshd.c
parent423ad02026a37dc128e0b879cadf9dbaf6377af7 (diff)
downloadqarsh-055c473f917703e7e73581a915e770f595dd76b4.tar.gz
qarsh-055c473f917703e7e73581a915e770f595dd76b4.tar.xz
qarsh-055c473f917703e7e73581a915e770f595dd76b4.zip
Nate made a good point, we should not fail if we can't chdir. ssh warns, but lets you in. Don't bother checking the return of chdir().
Diffstat (limited to 'qarshd.c')
-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;
}