[2147] in Kerberos-V5-bugs
gssftp secure.c bug
daemon@ATHENA.MIT.EDU (Derrick J Brashear)
Tue Aug 13 15:01:14 1996
Date: Tue, 13 Aug 1996 15:00:16 -0400 (EDT)
From: Derrick J Brashear <shadow+@andrew.cmu.edu>
To: krb5-bugs@MIT.EDU
Hi,
At about line 237 of the file secure.c in the ftp directory of gssftp,
in the section that's ifdef'd KERBEROS, an out_buf should be changed to outbuf.
so:
(outbuf = malloc((unsigned) (nbyte + FUDGE_FACTOR)))) {
bufsize = out_buf.length;
becomes
(outbuf = malloc((unsigned) (nbyte + FUDGE_FACTOR)))) {
bufsize = outbuf.length;