summaryrefslogtreecommitdiff
path: root/strings
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-07-08 17:41:25 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-07-08 17:41:25 +0000
commit4f04b8624cce9db2efe1f82f4f2a6fc5dddb84f9 (patch)
treefd622854416377b179abc4612d3bd2195baf4a92 /strings
parentfd5e3cc812e4e25eea1ce09fe7d6f4f88204bca1 (diff)
downloadlibapr-4f04b8624cce9db2efe1f82f4f2a6fc5dddb84f9.tar.gz
Rename to apr_fnmatch_test
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63589 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'strings')
-rw-r--r--strings/apr_fnmatch.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/strings/apr_fnmatch.c b/strings/apr_fnmatch.c
index f9a20c262..782d42a72 100644
--- a/strings/apr_fnmatch.c
+++ b/strings/apr_fnmatch.c
@@ -210,7 +210,7 @@ static const char *rangematch(const char *pattern, int test, int flags)
/* This function is an Apache addition */
/* return non-zero if pattern has any glob chars in it */
-APR_DECLARE(int) apr_is_fnmatch(const char *pattern)
+APR_DECLARE(int) apr_fnmatch_test(const char *pattern)
{
int nesting;
@@ -241,3 +241,9 @@ APR_DECLARE(int) apr_is_fnmatch(const char *pattern)
}
return 0;
}
+
+/* Deprecated */
+APR_DECLARE(int) apr_is_fnmatch(const char *pattern)
+{
+ return apr_fnmatch_test(pattern);
+}