summaryrefslogtreecommitdiffstats
path: root/src/windows/wintel
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows/wintel')
-rw-r--r--src/windows/wintel/ChangeLog5
-rw-r--r--src/windows/wintel/auth.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/windows/wintel/ChangeLog b/src/windows/wintel/ChangeLog
index 50ebe6e992..762c082709 100644
--- a/src/windows/wintel/ChangeLog
+++ b/src/windows/wintel/ChangeLog
@@ -1,3 +1,8 @@
+Wed Feb 3 23:00:05 1999 Theodore Y. Ts'o <tytso@mit.edu>
+
+ * auth.c (auth_send): Increase size of buf so we can handle
+ mongo-gram sized tickets from Microsoft. [telnet/686]
+
Tue Aug 5 18:47:02 1997 Theodore Y. Ts'o <tytso@mit.edu>
* Makefile.in, telnet.rc: Add version resource to the executable.
diff --git a/src/windows/wintel/auth.c b/src/windows/wintel/auth.c
index bba43865fb..5e9d1d2efc 100644
--- a/src/windows/wintel/auth.c
+++ b/src/windows/wintel/auth.c
@@ -209,7 +209,7 @@ copy_for_net(unsigned char *to, unsigned char *from, int c)
static int
auth_send(kstream ks, unsigned char *parsedat, int end_sub)
{
- char buf[512];
+ char buf[2048]; /* be sure that this is > auth.length+9 */
char *pname;
int plen;
int r;