mirror of
https://github.com/apache/httpd.git
synced 2025-07-29 09:01:18 +03:00
BZ 52623: Fix building against PCRE 8.30.
PCRE dropped support for pcre_info() which is deprecated since a long time. Use pcre_fullinfo() instead, which exists since version 3.0 of PCRE. Patch provided by Ruediger Pluem. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1243176 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -88,7 +88,7 @@ enum {
|
||||
/* The structure representing a compiled regular expression. */
|
||||
typedef struct {
|
||||
void *re_pcre;
|
||||
apr_size_t re_nsub;
|
||||
int re_nsub;
|
||||
apr_size_t re_erroffset;
|
||||
} ap_regex_t;
|
||||
|
||||
|
Reference in New Issue
Block a user