summaryrefslogtreecommitdiff
path: root/include/apr_fnmatch.h
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>1999-11-22 18:01:28 +0000
committerRyan Bloom <rbb@apache.org>1999-11-22 18:01:28 +0000
commit1ba036d402c25fc8974421a4105cbee8547bb947 (patch)
tree72c673dfe66224a697b58532b188dc87e28de1fb /include/apr_fnmatch.h
parentac491b9f4c768b5e84ed902500243679a879dc93 (diff)
downloadapr-1ba036d402c25fc8974421a4105cbee8547bb947.tar.gz
Begin to update apr/lib files to follow the standard APR function format.
This is the incredibly low hanging fruit, where all I am doing is standardizing the return codes for functions that already returned int's. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59484 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_fnmatch.h')
-rw-r--r--include/apr_fnmatch.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/apr_fnmatch.h b/include/apr_fnmatch.h
index 1b28b1923..a8c96bba7 100644
--- a/include/apr_fnmatch.h
+++ b/include/apr_fnmatch.h
@@ -39,6 +39,7 @@
#else
#include "apr_win.h"
#endif
+#include "apr_errno.h"
#ifndef _APR_FNMATCH_H_
#define _APR_FNMATCH_H_
@@ -55,7 +56,7 @@ extern "C" {
/* This flag is an Apache addition */
#define FNM_CASE_BLIND 0x08 /* Compare characters case ap_context_t nsensitively. */
-API_EXPORT(int) ap_fnmatch(const char *pattern, const char *strings,
+API_EXPORT(ap_status_t) ap_fnmatch(const char *pattern, const char *strings,
int flags);
/* this function is an Apache addition */