+Fri Mar 12 07:35:01 1999 Tom Yu <tlyu@mit.edu>
+
+ * ftpd.c (user): Remove extra "%s" in call to sprintf() to avoid
+ dereferencing stack garbage.
+
Mon Mar 8 23:47:51 1999 Tom Yu <tlyu@mit.edu>
* ftpd.M: Resync with reality.
#ifdef KRB5_KRB4_COMPAT
if (auth_type && strcmp(auth_type, "KERBEROS_V4") == 0) {
authorized = kuserok(&kdata,name) == 0;
- sprintf(buf, "Kerberos user %s%s%s@%s is%s authorized as %s%s",
+ sprintf(buf, "Kerberos user %s%s%s@%s is%s authorized as %s",
kdata.pname, *kdata.pinst ? "." : "",
kdata.pinst, kdata.prealm,
authorized ? "" : " not", name);