diff options
author | Paul Traina <pst@FreeBSD.org> | 1994-10-22 06:23:15 +0000 |
---|---|---|
committer | Paul Traina <pst@FreeBSD.org> | 1994-10-22 06:23:15 +0000 |
commit | 9e53ab00d2c0e87a640750341885be43aa39473d (patch) | |
tree | cb6559824b9688a2b9222c38c15ca116d9ed86ac /libexec | |
parent | 0d78c1c0512867b59b7aaaa3e6506a0c6a800752 (diff) | |
download | src-9e53ab00d2c0e87a640750341885be43aa39473d.tar.gz src-9e53ab00d2c0e87a640750341885be43aa39473d.zip |
Figured it out, misapplied a patch, ftpd now works again.
Notes
Notes:
svn path=/head/; revision=3777
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/ftpd/ftpcmd.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/ftpd/ftpcmd.y b/libexec/ftpd/ftpcmd.y index 6ec3d252545a..151c3d7c81fb 100644 --- a/libexec/ftpd/ftpcmd.y +++ b/libexec/ftpd/ftpcmd.y @@ -976,7 +976,7 @@ yylex() upper(cp); p = lookup(sitetab, cp); cbuf[cpos] = c; - if (p != 0) { + if (guest == 0 && p != 0) { if (p->implemented == 0) { state = CMD; nack(p->name); |