summaryrefslogtreecommitdiff
path: root/src/misc.c
diff options
context:
space:
mode:
authorrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-18 23:34:32 +0000
committerrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-18 23:34:32 +0000
commite11b5b5acedaa0fdd73394e6277ca0ae39f8e4c7 (patch)
tree380694631fb85b75f174db13f13a791b27076a4f /src/misc.c
parent12cc6334576c61933383783e94a7b12c818b080b (diff)
Patch from DP, converting all match calls and removing old match method.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2111 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/misc.c')
-rw-r--r--src/misc.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/misc.c b/src/misc.c
index 2acbb6087..ff56e6c1f 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -209,35 +209,6 @@ const char *merge_args(int argc, char **argv)
}
/*************************************************************************/
-
-/**
- * match_wild: Case Senstive wild card search
- * @param pattern To be matched
- * @param str String in which the pattern is to be matched
- * @return 1 if the string matches the pattern, 0 if not.
- * NOTE: Deprecated by Anope::Match().
- */
-int match_wild(const char *pattern, const char *str)
-{
- return Anope::Match(str, pattern, true);
-}
-
-/*************************************************************************/
-
-/**
- * match_wild: Case Insenstive wild card search
- * @param pattern To be matched
- * @param str String in which the pattern is to be matched
- * @return 1 if the string matches the pattern, 0 if not.
- * NOTE: Deprecated by Anope::Match().
- */
-int match_wild_nocase(const char *pattern, const char *str)
-{
- return Anope::Match(str, pattern, false);
-}
-
-/*************************************************************************/
-
/**
* Process a string containing a number/range list in the form
* "n1[-n2][,n3[-n4]]...", calling a caller-specified routine for each