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:21:24 +0000
commit5c5e7e1a7eb114cf136e1ae4b6a413bc48ba41eb (patch)
treed9399cb8e1df8035b613b45b432d4c2d1ec98a85 /crypto/cversion.c
parent103b171d8fc282ef435f8de9afbf7782e312961f (diff)
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.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