diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | match.c | 4 |
2 files changed, 6 insertions, 3 deletions
@@ -13,6 +13,9 @@ | |||
13 | - markus@cvs.openbsd.org 2002/02/11 16:19:39 | 13 | - markus@cvs.openbsd.org 2002/02/11 16:19:39 |
14 | [sshd.c] | 14 | [sshd.c] |
15 | include md5.h not hmac.h | 15 | include md5.h not hmac.h |
16 | - markus@cvs.openbsd.org 2002/02/11 16:21:42 | ||
17 | [match.c] | ||
18 | support up to 40 algorithms per proposal | ||
16 | 19 | ||
17 | 20020210 | 20 | 20020210 |
18 | - (djm) OpenBSD CVS Sync | 21 | - (djm) OpenBSD CVS Sync |
@@ -7560,4 +7563,4 @@ | |||
7560 | - Wrote replacements for strlcpy and mkdtemp | 7563 | - Wrote replacements for strlcpy and mkdtemp |
7561 | - Released 1.0pre1 | 7564 | - Released 1.0pre1 |
7562 | 7565 | ||
7563 | $Id: ChangeLog,v 1.1842 2002/02/13 02:55:06 djm Exp $ | 7566 | $Id: ChangeLog,v 1.1843 2002/02/13 02:55:30 djm Exp $ |
@@ -35,7 +35,7 @@ | |||
35 | */ | 35 | */ |
36 | 36 | ||
37 | #include "includes.h" | 37 | #include "includes.h" |
38 | RCSID("$OpenBSD: match.c,v 1.16 2001/12/19 07:18:56 deraadt Exp $"); | 38 | RCSID("$OpenBSD: match.c,v 1.17 2002/02/11 16:21:42 markus Exp $"); |
39 | 39 | ||
40 | #include "match.h" | 40 | #include "match.h" |
41 | #include "xmalloc.h" | 41 | #include "xmalloc.h" |
@@ -226,7 +226,7 @@ match_user(const char *user, const char *host, const char *ipaddr, | |||
226 | * Returns first item from client-list that is also supported by server-list, | 226 | * Returns first item from client-list that is also supported by server-list, |
227 | * caller must xfree() returned string. | 227 | * caller must xfree() returned string. |
228 | */ | 228 | */ |
229 | #define MAX_PROP 20 | 229 | #define MAX_PROP 40 |
230 | #define SEP "," | 230 | #define SEP "," |
231 | char * | 231 | char * |
232 | match_list(const char *client, const char *server, u_int *next) | 232 | match_list(const char *client, const char *server, u_int *next) |