diff options
author | Matt Caswell <matt@openssl.org> | 2015-01-08 20:05:43 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2015-01-08 20:21:24 +0100 |
commit | 5c5e7e1a7eb114cf136e1ae4b6a413bc48ba41eb (patch) | |
tree | d9399cb8e1df8035b613b45b432d4c2d1ec98a85 /crypto/cversion.c | |
parent | A memory leak can occur in dtls1_buffer_record if either of the calls to (diff) | |
download | openssl-5c5e7e1a7eb114cf136e1ae4b6a413bc48ba41eb.tar.xz openssl-5c5e7e1a7eb114cf136e1ae4b6a413bc48ba41eb.zip |
Fix build failure on Windows due to undefined cflags identifier
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/cversion.c')
-rw-r--r-- | crypto/cversion.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/cversion.c b/crypto/cversion.c index 0336adaa57..881957e892 100644 --- a/crypto/cversion.c +++ b/crypto/cversion.c @@ -77,7 +77,7 @@ const char *SSLeay_version(int t) if (t == SSLEAY_CFLAGS) { #ifdef CFLAGS - return(cflags); + return(CFLAGS); #else return("compiler: information not available"); #endif |