Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libc/gen bump down the recursion limit to 64.
details: https://anonhg.NetBSD.org/src/rev/c8a2b23be046
branches: trunk
changeset: 761537:c8a2b23be046
user: christos <christos%NetBSD.org@localhost>
date: Mon Jan 31 15:07:29 2011 +0000
description:
bump down the recursion limit to 64.
diffstat:
lib/libc/gen/fnmatch.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (25 lines):
diff -r 282c1303ca08 -r c8a2b23be046 lib/libc/gen/fnmatch.c
--- a/lib/libc/gen/fnmatch.c Mon Jan 31 15:06:01 2011 +0000
+++ b/lib/libc/gen/fnmatch.c Mon Jan 31 15:07:29 2011 +0000
@@ -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);
}
Home |
Main Index |
Thread Index |
Old Index