diff options
author | jkim <jkim@FreeBSD.org> | 2015-01-09 00:12:20 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2015-01-09 00:12:20 +0000 |
commit | 6c57594b3634581f3a67324310e0ea5da4e7b339 (patch) | |
tree | fcb0d0a845a7933d5c28a4512ebc2f13b808ac8b /crypto | |
parent | a350427e88bc6ff288594c964ca0f57464062eb0 (diff) | |
download | FreeBSD-src-6c57594b3634581f3a67324310e0ea5da4e7b339.zip FreeBSD-src-6c57594b3634581f3a67324310e0ea5da4e7b339.tar.gz |
Fix build failure on Windows due to undefined cflags identifier.
https://github.com/openssl/openssl/commit/5c5e7e1a7eb114cf136e1ae4b6a413bc48ba41eb
Diffstat (limited to 'crypto')
-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 0336ada..881957e 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 |