- (djm) Fix early (and double) free of remote user when using Kerberos.
Patch from Simon Wilkinson <simon@sxw.org.uk>
This commit is contained in:
parent
726273e129
commit
056ca1eb47
|
@ -1,3 +1,7 @@
|
||||||
|
20011113
|
||||||
|
- (djm) Fix early (and double) free of remote user when using Kerberos.
|
||||||
|
Patch from Simon Wilkinson <simon@sxw.org.uk>
|
||||||
|
|
||||||
20011112
|
20011112
|
||||||
- (djm) Makefile correctness fix from Mark D. Baushke <mdb@juniper.net>
|
- (djm) Makefile correctness fix from Mark D. Baushke <mdb@juniper.net>
|
||||||
- (djm) Cygwin config patch from Corinna Vinschen <vinschen@redhat.com>
|
- (djm) Cygwin config patch from Corinna Vinschen <vinschen@redhat.com>
|
||||||
|
@ -6887,4 +6891,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1657 2001/11/12 00:40:11 djm Exp $
|
$Id: ChangeLog,v 1.1658 2001/11/13 00:20:07 djm Exp $
|
||||||
|
|
2
auth1.c
2
auth1.c
|
@ -140,7 +140,6 @@ do_authloop(Authctxt *authctxt)
|
||||||
snprintf(info, sizeof(info),
|
snprintf(info, sizeof(info),
|
||||||
" tktuser %.100s",
|
" tktuser %.100s",
|
||||||
client_user);
|
client_user);
|
||||||
xfree(client_user);
|
|
||||||
}
|
}
|
||||||
#endif /* KRB4 */
|
#endif /* KRB4 */
|
||||||
} else {
|
} else {
|
||||||
|
@ -154,7 +153,6 @@ do_authloop(Authctxt *authctxt)
|
||||||
snprintf(info, sizeof(info),
|
snprintf(info, sizeof(info),
|
||||||
" tktuser %.100s",
|
" tktuser %.100s",
|
||||||
client_user);
|
client_user);
|
||||||
xfree(client_user);
|
|
||||||
}
|
}
|
||||||
#endif /* KRB5 */
|
#endif /* KRB5 */
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue