From afc7a5d7741ad59a2efe2db6b928c89bf0928098 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Wed, 13 Feb 2002 13:55:30 +1100 Subject: [PATCH] - markus@cvs.openbsd.org 2002/02/11 16:21:42 [match.c] support up to 40 algorithms per proposal --- ChangeLog | 5 ++++- match.c | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 68602a589..984d0c92f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -13,6 +13,9 @@ - markus@cvs.openbsd.org 2002/02/11 16:19:39 [sshd.c] include md5.h not hmac.h + - markus@cvs.openbsd.org 2002/02/11 16:21:42 + [match.c] + support up to 40 algorithms per proposal 20020210 - (djm) OpenBSD CVS Sync @@ -7560,4 +7563,4 @@ - Wrote replacements for strlcpy and mkdtemp - Released 1.0pre1 -$Id: ChangeLog,v 1.1842 2002/02/13 02:55:06 djm Exp $ +$Id: ChangeLog,v 1.1843 2002/02/13 02:55:30 djm Exp $ diff --git a/match.c b/match.c index 9e56989cc..c82c28a8b 100644 --- a/match.c +++ b/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)