maxscale/maxscale_pcre2.h renamed to maxscale/pcre2.h

This commit is contained in:
Johan Wikman
2016-10-13 21:11:35 +03:00
parent 76430e060f
commit d04cb54b9f
11 changed files with 11 additions and 11 deletions

View File

@ -24,7 +24,7 @@
* @endverbatim
*/
#include <maxscale/maxscale_pcre2.h>
#include <maxscale/pcre2.h>
#include <maxscale/alloc.h>
/**

View File

@ -1099,7 +1099,7 @@ void prepare_pcre2_patterns()
* @param string String to match
* @return MXS_PCRE2_MATCH if the pattern matches, MXS_PCRE2_NOMATCH if it does
* not match and MXS_PCRE2_ERROR if an error occurred
* @see maxscale_pcre2.h
* @see maxscale/pcre2.h
*/
mxs_pcre2_result_t modutil_mysql_wildcard_match(const char* pattern, const char* string)
{

View File

@ -36,7 +36,7 @@
#include <maxscale/skygw_utils.h>
#include <maxscale/log_manager.h>
#include <maxscale/secrets.h>
#include <maxscale/maxscale_pcre2.h>
#include <maxscale/pcre2.h>
#include <maxscale/externcmd.h>
#include <mysqld_error.h>
#include <maxscale/mysql_utils.h>

View File

@ -34,7 +34,7 @@
#include <stdlib.h>
#include <string.h>
#include <maxscale/alloc.h>
#include <maxscale/maxscale_pcre2.h>
#include <maxscale/pcre2.h>
#include <maxscale/skygw_debug.h>
#define test_assert(a, b) if(!(a)){fprintf(stderr, b);return 1;}