diff options
author | msvensson@pilot.blaudden <> | 2007-05-07 11:50:38 +0200 |
---|---|---|
committer | msvensson@pilot.blaudden <> | 2007-05-07 11:50:38 +0200 |
commit | 3899138fe0a4df2d80d98191caeb46bc52d416d3 (patch) | |
tree | 8acb2009ea79bec1d9ce58de557f03a4f147844e /config | |
parent | 53758bb96f5c49ed362ce4894bfdbd7364f0cda9 (diff) | |
download | mariadb-git-3899138fe0a4df2d80d98191caeb46bc52d416d3.tar.gz |
Bug #28267 Cannot build with OpenSSL
- Fix use of uninitialized variable in config/ac-macros/ssl.m4
Diffstat (limited to 'config')
-rw-r--r-- | config/ac-macros/ssl.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/ac-macros/ssl.m4 b/config/ac-macros/ssl.m4 index 4ee58318a62..3ff4ef1e143 100644 --- a/config/ac-macros/ssl.m4 +++ b/config/ac-macros/ssl.m4 @@ -104,7 +104,7 @@ AC_DEFUN([MYSQL_FIND_OPENSSL], [ # compiler warnings when using gcc 3.x if test "$openssl_include" != "/usr/include" then - openssl_includes="-I$ssl_include" + openssl_includes="-I$openssl_include" fi # |