summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGeoffrey King <gjking@mit.edu>1998-08-29 00:10:24 +0000
committerGeoffrey King <gjking@mit.edu>1998-08-29 00:10:24 +0000
commit0ae3f3366ffdd3a3121e99ebefdef1f995315818 (patch)
tree3a6b3b040b5055206814552d2d4818ea8bc41696 /src
parent89ccebdaf6de86e4f1cced0963f90f379d0b79dc (diff)
downloadkrb5-0ae3f3366ffdd3a3121e99ebefdef1f995315818.tar.gz
krb5-0ae3f3366ffdd3a3121e99ebefdef1f995315818.tar.xz
krb5-0ae3f3366ffdd3a3121e99ebefdef1f995315818.zip
Of course, the following sentence actually refers to the login function,
not the pass function: Don't reply 230 "User logged in" if the user didn't send a PASS command; this causes the client to get a bit confused. ChangeLog: git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10900 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/appl/gssftp/ftpd/ChangeLog7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/appl/gssftp/ftpd/ChangeLog b/src/appl/gssftp/ftpd/ChangeLog
index 6aa6a2323..a535839f9 100644
--- a/src/appl/gssftp/ftpd/ChangeLog
+++ b/src/appl/gssftp/ftpd/ChangeLog
@@ -2,11 +2,10 @@
* ftpd.c (login): New function. Essentially, the old pass
function has been split into its two logical components, pass and
- login.
+ login. Don't reply 230 "User logged in" if the user didn't
+ send a PASS command; this causes the client to get a bit confused.
(pass): If auth_ok is true, reply with code 202 to tell the
- user that a PASS command is not necessary. Also, don't reply
- 230 "User logged in" if the user didn't send a PASS command;
- this causes the client to get a bit confused.
+ user that a PASS command is not necessary.
(auth_ok): New function that returns true if either gss_ok or
kerb_ok is true (all the #ifdefs were beginning to clutter things,
and it's a good abstraction in case other auth types are ever