diff options
author | Colin Watson <cjwatson@debian.org> | 2007-04-10 18:17:39 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2007-04-10 18:17:39 +0000 |
commit | 2d0b8b7ed2866bd51cb83e928402465db869cc4e (patch) | |
tree | a83e9e54c07718823848b9cebc06ce953bd94d14 | |
parent | 28d602641f0958a7774c3cf06054f9424ca21042 (diff) |
* Increase MAX_SESSIONS to 64.
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | session.c | 2 |
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 @@ | |||
1 | openssh (1:4.3p2-10) UNRELEASED; urgency=low | 1 | openssh (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 | ||
@@ -106,7 +106,7 @@ extern Buffer loginmsg; | |||
106 | const char *original_command = NULL; | 106 | const char *original_command = NULL; |
107 | 107 | ||
108 | /* data */ | 108 | /* data */ |
109 | #define MAX_SESSIONS 10 | 109 | #define MAX_SESSIONS 64 |
110 | Session sessions[MAX_SESSIONS]; | 110 | Session sessions[MAX_SESSIONS]; |
111 | 111 | ||
112 | #ifdef HAVE_LOGIN_CAP | 112 | #ifdef HAVE_LOGIN_CAP |