Module Name:    src
Committed By:   christos
Date:           Mon Jan 31 15:07:29 UTC 2011

Modified Files:
        src/lib/libc/gen: fnmatch.c

Log Message:
bump down the recursion limit to 64.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/lib/libc/gen/fnmatch.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/gen/fnmatch.c
diff -u src/lib/libc/gen/fnmatch.c:1.22 src/lib/libc/gen/fnmatch.c:1.23
--- src/lib/libc/gen/fnmatch.c:1.22	Sun Jan 30 23:20:50 2011
+++ src/lib/libc/gen/fnmatch.c	Mon Jan 31 10:07:29 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: fnmatch.c,v 1.22 2011/01/31 04:20:50 christos Exp $	*/
+/*	$NetBSD: fnmatch.c,v 1.23 2011/01/31 15:07:29 christos Exp $	*/
 
 /*
  * Copyright (c) 1989, 1993, 1994
@@ -37,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)fnmatch.c	8.2 (Berkeley) 4/16/94";
 #else
-__RCSID("$NetBSD: fnmatch.c,v 1.22 2011/01/31 04:20:50 christos Exp $");
+__RCSID("$NetBSD: fnmatch.c,v 1.23 2011/01/31 15:07:29 christos Exp $");
 #endif
 #endif /* LIBC_SCCS and not lint */
 
@@ -208,5 +208,5 @@
 int
 fnmatch(const char *pattern, const char *string, int flags)
 {
-	return fnmatchx(pattern, string, flags, 128);
+	return fnmatchx(pattern, string, flags, 64);
 }

Reply via email to