+Thu Feb 25 23:31:37 1999 Tom Yu <tlyu@mit.edu>
+
+ * ftpd.c (reply): Don't call secure_gss_error() or secure_error()
+ from within reply() to avoid setting up an infinite
+ loop. [krb5-appl/684]
+
Thu Feb 18 18:34:23 1999 Tom Yu <tlyu@mit.edu>
* ftpd.c (login): Add call to setluid() if necessary.
&in_buf, &conf_state,
&out_buf);
if (maj_stat != GSS_S_COMPLETE) {
+#if 0
+/* Don't setup an infinite loop */
/* generally need to deal */
secure_gss_error(maj_stat, min_stat,
(clevel==PROT_P)?
"gss_seal ENC didn't complete":
"gss_seal MIC didn't complete");
+#endif /* 0 */
} else if ((clevel == PROT_P) && !conf_state) {
+#if 0
+/* Don't setup an infinite loop */
secure_error("GSSAPI didn't encrypt message");
+#endif /* 0 */
} else {
memcpy(out, out_buf.value,
length=out_buf.length);