diff options
| author | David Greenman <dg@FreeBSD.org> | 1995-05-22 09:53:02 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1995-05-22 09:53:02 +0000 |
| commit | 82c76939c1b5010bf28fb251c15853712e94cb40 (patch) | |
| tree | 9829baefc51f82731c802b407c7328719a6515c6 /libexec/ftpd | |
| parent | 0d8da7331a0ec234d7b49385b0e53a511e8e38ef (diff) | |
Notes
Diffstat (limited to 'libexec/ftpd')
| -rw-r--r-- | libexec/ftpd/ftpd.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libexec/ftpd/ftpd.c b/libexec/ftpd/ftpd.c index 81c02c3648d2..79c20f163fe7 100644 --- a/libexec/ftpd/ftpd.c +++ b/libexec/ftpd/ftpd.c @@ -552,6 +552,7 @@ pass(passwd) { char *salt, *xpasswd; FILE *fd; + static char homedir[MAXPATHLEN]; if (logged_in || askpasswd == 0) { reply(503, "Login with USER first."); @@ -627,6 +628,12 @@ pass(passwd) reply(550, "Can't set uid."); goto bad; } + + /* + * Set home directory so that use of ~ (tilde) works correctly. + */ + setenv("HOME", getcwd(homedir, MAXPATHLEN), 1); + /* * Display a login message, if it exists. * N.B. reply(230,) must follow the message. |
