summaryrefslogtreecommitdiffstats
path: root/crypto/cversion.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-08 19:05:43 +0000
committerMatt Caswell <matt@openssl.org>2015-01-08 19:24:09 +0000
commit5cee72382c5e79d4c7c021fac1aeeb244c5c19fa (patch)
tree122a48780e512105cd0cfbb57c46afac7d06a69c /crypto/cversion.c
parent7c6a3cf2375f5881ef3f3a58ac0fbd0b4663abd1 (diff)
Fix build failure on Windows due to undefined cflags identifier
Reviewed-by: Tim Hudson <tjh@openssl.org> (cherry picked from commit 5c5e7e1a7eb114cf136e1ae4b6a413bc48ba41eb)
Diffstat (limited to 'crypto/cversion.c')
-rw-r--r--crypto/cversion.c2
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