summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog1
-rw-r--r--session.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index dbb55df1f..a33deecd6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
1openssh (1:4.3p2-10) UNRELEASED; urgency=low 1openssh (1:4.3p2-10) UNRELEASED; urgency=low
2 2
3 * Multiply openssh-client-udeb's Installer-Menu-Item by 100. 3 * Multiply openssh-client-udeb's Installer-Menu-Item by 100.
4 * Increase MAX_SESSIONS to 64.
4 5
5 -- Colin Watson <cjwatson@debian.org> Tue, 10 Apr 2007 19:11:29 +0100 6 -- Colin Watson <cjwatson@debian.org> Tue, 10 Apr 2007 19:11:29 +0100
6 7
diff --git a/session.c b/session.c
index 3420db57d..73fcb6453 100644
--- a/session.c
+++ b/session.c
@@ -106,7 +106,7 @@ extern Buffer loginmsg;
106const char *original_command = NULL; 106const char *original_command = NULL;
107 107
108/* data */ 108/* data */
109#define MAX_SESSIONS 10 109#define MAX_SESSIONS 64
110Session sessions[MAX_SESSIONS]; 110Session sessions[MAX_SESSIONS];
111 111
112#ifdef HAVE_LOGIN_CAP 112#ifdef HAVE_LOGIN_CAP