2001-03-05 Sam Hartman <hartmans@mit.edu>
authorSam Hartman <hartmans@mit.edu>
Mon, 5 Mar 2001 10:42:09 +0000 (10:42 +0000)
committerSam Hartman <hartmans@mit.edu>
Mon, 5 Mar 2001 10:42:09 +0000 (10:42 +0000)
* kuserok.c: Set max_username to 65 not 10.  65 should be enough
for a null terminated string from most current Unixes usernames.
The previous limit of 10 was too low.  I don't know how the
previous limit was chosen nor why this is not a dynamic buffer.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13054 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/os/ChangeLog
src/lib/krb5/os/kuserok.c

index 6dcd9a46233fc9cf533785a97bf6ef3197e6b11c..acfbdf5b1dda9aefb2cd46d5e32368691346aae1 100644 (file)
@@ -1,3 +1,10 @@
+2001-03-05  Sam Hartman  <hartmans@mit.edu>
+
+       * kuserok.c: Set max_username to 65 not 10.  65 should be enough
+       for a null terminated string from most current Unixes usernames.
+       The previous limit of 10 was too low.  I don't know how the
+       previous limit was chosen nor why this is not a dynamic buffer.
+
 2001-03-05  Tom Yu  <tlyu@mit.edu>
 
        * init_os_ctx.c: Get sys/ioctl.h for Solaris to get FIONBIO.
index 6d2adb126e9790beb6dd1f48f4473dc64a5112a5..bf3c2968b9ebe77bcc2c486f27063b8a9af846be 100644 (file)
@@ -38,7 +38,7 @@
 #define getpwnam(user) getpwnam((char *)user)
 #endif
 
-#define MAX_USERNAME 10
+#define MAX_USERNAME 65
 
 /*
  * Given a Kerberos principal "principal", and a local username "luser",