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

@ -18,7 +18,7 @@
#include <errno.h>
#include <maxscale/skygw_utils.h>
#include <maxscale/log_manager.h>
#include <maxscale/maxscale_pcre2.h>
#include <maxscale/pcre2.h>
#define MAXSCALE_EXTCMD_ARG_MAX 256

View File

@ -29,7 +29,7 @@
#include <maxscale/buffer.h>
#include <maxscale/dcb.h>
#include <string.h>
#include <maxscale/maxscale_pcre2.h>
#include <maxscale/pcre2.h>
#define PTR_IS_RESULTSET(b) (b[0] == 0x01 && b[1] == 0x0 && b[2] == 0x0 && b[3] == 0x01)
#define PTR_IS_EOF(b) (b[0] == 0x05 && b[1] == 0x0 && b[2] == 0x0 && b[4] == 0xfe)

View File

@ -21,7 +21,7 @@
#include <pcre2.h>
/**
* @file maxscale_pcre2.h - Utility functions for regular expression matching
* @file pcre2.h - Utility functions for regular expression matching
* with the bundled PCRE2 library.
*
* @verbatim