auth.c (auth_send): Increase size of buf so we can handle mongo-gram
authorTheodore Tso <tytso@mit.edu>
Thu, 4 Feb 1999 04:43:25 +0000 (04:43 +0000)
committerTheodore Tso <tytso@mit.edu>
Thu, 4 Feb 1999 04:43:25 +0000 (04:43 +0000)
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
src/windows/wintel/auth.c

index 50ebe6e9929223467524d81db61edf6ab0f8ec16..762c082709201040b93eda48799f7c91a33ff41d 100644 (file)
@@ -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.
index bba43865fbc236340d8b0e05a1c28cea139dfa7f..5e9d1d2efcf525b217d57cd87cf047553d7a1168 100644 (file)
@@ -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;