diff options
| author | Yaroslav Tykhiy <ytykhiy@gmail.com> | 2004-11-18 11:07:00 +0000 |
|---|---|---|
| committer | Yaroslav Tykhiy <ytykhiy@gmail.com> | 2004-11-18 11:07:00 +0000 |
| commit | 4a3e5acd8d730b292053b4b2e12fb3d2c749cad0 (patch) | |
| tree | 20503aaf6a135c5d2f74781feebbec3f327befff /libexec/ftpd | |
| parent | 6b2dee6ba12ae8743debe6d433de1851488b09c8 (diff) | |
Notes
Diffstat (limited to 'libexec/ftpd')
| -rw-r--r-- | libexec/ftpd/ftpd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/ftpd/ftpd.c b/libexec/ftpd/ftpd.c index 2b8ba9fe812e..e98fde543804 100644 --- a/libexec/ftpd/ftpd.c +++ b/libexec/ftpd/ftpd.c @@ -1406,12 +1406,12 @@ skip: syslog(LOG_INFO|LOG_AUTH, "FTP LOGIN FAILED (HOST) as %s: permission denied.", pw->pw_name); - reply(530, "Permission denied.\n"); + reply(530, "Permission denied."); pw = NULL; return; } if (!auth_timeok(lc, time(NULL))) { - reply(530, "Login not available right now.\n"); + reply(530, "Login not available right now."); pw = NULL; return; } @@ -2383,7 +2383,7 @@ void fatalerror(char *s) { - reply(451, "Error in server: %s\n", s); + reply(451, "Error in server: %s", s); reply(221, "Closing connection due to server error."); dologout(0); /* NOTREACHED */ |
