diff options
author | Guenter Knauf <fuankg@apache.org> | 2010-11-22 23:34:24 +0000 |
---|---|---|
committer | Guenter Knauf <fuankg@apache.org> | 2010-11-22 23:34:24 +0000 |
commit | 2db74403c1bbb0f39de9d3d8260ca083bc731b95 (patch) | |
tree | 6df68cb5dc95425cc844d65d426d70f18a75d817 /modules | |
parent | f017a59901d9db52efecd01c57e876424980ae8a (diff) | |
download | httpd-2db74403c1bbb0f39de9d3d8260ca083bc731b95.tar.gz |
Fixed compile-time error message.
We test for APU, thus the error statement should tell same;
APR and APU are independent before APR 2.0.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1037941 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r-- | modules/session/mod_session_crypto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/session/mod_session_crypto.c b/modules/session/mod_session_crypto.c index 65abf67d2f..029d7eaec2 100644 --- a/modules/session/mod_session_crypto.c +++ b/modules/session/mod_session_crypto.c @@ -23,7 +23,7 @@ #if APU_MAJOR_VERSION == 1 && APU_MINOR_VERSION < 4 -#error session_crypto_module requires APR v1.4.0 or later +#error session_crypto_module requires APU v1.4.0 or later #elif APU_HAVE_CRYPTO == 0 |