From af63a51551b1ade4402c7d9c2d6c31af09ea3474 Mon Sep 17 00:00:00 2001 From: Theodore Tso Date: Thu, 4 Feb 1999 04:43:25 +0000 Subject: [PATCH] auth.c (auth_send): Increase size of buf so we can handle mongo-gram sized tickets from Microsoft. [telnet/686] git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11144 dc483132-0cff-0310-8789-dd5450dbe970 --- src/windows/wintel/ChangeLog | 5 +++++ src/windows/wintel/auth.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/windows/wintel/ChangeLog b/src/windows/wintel/ChangeLog index 50ebe6e99..762c08270 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 + + * 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 * 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 bba43865f..5e9d1d2ef 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; -- 2.26.2