login: increase login name size limit from 32 to 64
authorDenys Vlasenko <vda.linux@googlemail.com>
Wed, 15 Aug 2012 15:06:37 +0000 (17:06 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Wed, 15 Aug 2012 15:06:37 +0000 (17:06 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
loginutils/login.c

index bf43f3a..6ec8dc4 100644 (file)
@@ -37,7 +37,8 @@ static const struct pam_conv conv = {
 enum {
        TIMEOUT = 60,
        EMPTY_USERNAME_COUNT = 10,
-       USERNAME_SIZE = 32,
+       /* Some users found 32 chars limit to be too low: */
+       USERNAME_SIZE = 64,
        TTYNAME_SIZE = 32,
 };