mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-27 07:02:11 +00:00
BUG/MINOR: displayed PCRE version is running release
pcre_version() returns the running PCRE release, not the release haproxy was built with. This simple string fix should be backported to supported releases, as the output may be confusing.
This commit is contained in:
parent
83b0a17678
commit
d64788d9c6
@ -352,7 +352,7 @@ void display_build_opts()
|
||||
#endif
|
||||
|
||||
#ifdef USE_PCRE
|
||||
printf("Built with PCRE version : %s", pcre_version());
|
||||
printf("Running on PCRE version : %s", pcre_version());
|
||||
printf("\nPCRE library supports JIT : ");
|
||||
#ifdef USE_PCRE_JIT
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user