summaryrefslogtreecommitdiff
path: root/match.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-02-13 13:55:30 +1100
committerDamien Miller <djm@mindrot.org>2002-02-13 13:55:30 +1100
commitafc7a5d7741ad59a2efe2db6b928c89bf0928098 (patch)
treebca11ea795601a76441796db85f4949ed969086f /match.c
parent6a47f30c55ac5edc984f6c914379d1f0ff2c0cef (diff)
- markus@cvs.openbsd.org 2002/02/11 16:21:42
[match.c] support up to 40 algorithms per proposal
Diffstat (limited to 'match.c')
-rw-r--r--match.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/match.c b/match.c
index 9e56989cc..c82c28a8b 100644
--- a/match.c
+++ b/match.c
@@ -35,7 +35,7 @@
35 */ 35 */
36 36
37#include "includes.h" 37#include "includes.h"
38RCSID("$OpenBSD: match.c,v 1.16 2001/12/19 07:18:56 deraadt Exp $"); 38RCSID("$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 ","
231char * 231char *
232match_list(const char *client, const char *server, u_int *next) 232match_list(const char *client, const char *server, u_int *next)