diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-02-11 16:21:43 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-02-11 16:21:43 +0000 |
commit | e10d8ef56ad6b95cb85ac637b2e79c4f7b1b8446 (patch) | |
tree | f39af8313c38fb9e5eb9de95f7dcf39ae22508c3 | |
parent | 9eab9ee08d8626c0f32fab97d4fd60e13a56f143 (diff) |
support up to 40 algorithms per proposal
-rw-r--r-- | usr.bin/ssh/match.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/match.c b/usr.bin/ssh/match.c index 9e56989cc89..c82c28a8b91 100644 --- a/usr.bin/ssh/match.c +++ b/usr.bin/ssh/match.c @@ -35,7 +35,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: match.c,v 1.16 2001/12/19 07:18:56 deraadt Exp $"); +RCSID("$OpenBSD: match.c,v 1.17 2002/02/11 16:21:42 markus Exp $"); #include "match.h" #include "xmalloc.h" @@ -226,7 +226,7 @@ match_user(const char *user, const char *host, const char *ipaddr, * Returns first item from client-list that is also supported by server-list, * caller must xfree() returned string. */ -#define MAX_PROP 20 +#define MAX_PROP 40 #define SEP "," char * match_list(const char *client, const char *server, u_int *next) |