summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--loginrec.h4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 9eab2b462..ec830bbb7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -38,6 +38,9 @@
38 - (dtucker) [auth-pam.c] Bug #971: Prevent leaking information about user 38 - (dtucker) [auth-pam.c] Bug #971: Prevent leaking information about user
39 existence via keyboard-interactive/pam, in conjunction with previous 39 existence via keyboard-interactive/pam, in conjunction with previous
40 auth2-chall.c change; with Colin Watson and djm. 40 auth2-chall.c change; with Colin Watson and djm.
41 - (dtucker) [loginrec.h] Bug #952: Increase size of username field to 128
42 bytes to prevent errors from login_init_entry() when the username is
43 exactly 64 bytes(!) long. From brhamon at cisco.com, ok djm@
41 44
4220050118 4520050118
43 - (dtucker) [INSTALL Makefile.in configure.ac survey.sh.in] Implement 46 - (dtucker) [INSTALL Makefile.in configure.ac survey.sh.in] Implement
@@ -2010,4 +2013,4 @@
2010 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 2013 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
2011 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 2014 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
2012 2015
2013$Id: ChangeLog,v 1.3618 2005/01/20 02:27:56 dtucker Exp $ 2016$Id: ChangeLog,v 1.3619 2005/01/20 11:07:29 dtucker Exp $
diff --git a/loginrec.h b/loginrec.h
index 7f932c296..6b7233256 100644
--- a/loginrec.h
+++ b/loginrec.h
@@ -35,7 +35,7 @@
35#include <netinet/in.h> 35#include <netinet/in.h>
36#include <sys/socket.h> 36#include <sys/socket.h>
37 37
38/* RCSID("$Id: loginrec.h,v 1.7 2003/06/03 02:18:50 djm Exp $"); */ 38/* RCSID("$Id: loginrec.h,v 1.8 2005/01/20 11:07:30 dtucker Exp $"); */
39 39
40/** 40/**
41 ** you should use the login_* calls to work around platform dependencies 41 ** you should use the login_* calls to work around platform dependencies
@@ -62,7 +62,7 @@ union login_netinfo {
62/* string lengths - set very long */ 62/* string lengths - set very long */
63#define LINFO_PROGSIZE 64 63#define LINFO_PROGSIZE 64
64#define LINFO_LINESIZE 64 64#define LINFO_LINESIZE 64
65#define LINFO_NAMESIZE 64 65#define LINFO_NAMESIZE 128
66#define LINFO_HOSTSIZE 256 66#define LINFO_HOSTSIZE 256
67 67
68struct logininfo { 68struct logininfo {