summaryrefslogtreecommitdiffstats
path: root/ext/openssl/ossl_hmac.c
diff options
context:
space:
mode:
authorzzak <zzak@ruby-lang.org>2014-07-27 19:37:10 +0000
committerzzak <zzak@ruby-lang.org>2014-07-27 19:37:10 +0000
commita3c31dc959d7a62a7275b553bab8d853c810e82f (patch)
treeb1a097ba7d9cb7aa3d59fdc3b85672370c737bdd /ext/openssl/ossl_hmac.c
parent13ffb09b4d43cec0b0c29e9e238b29916dd6feca (diff)
downloadruby-openssl-history-a3c31dc959d7a62a7275b553bab8d853c810e82f.tar.gz
* ext/openssl/ossl_hmac.c: Fix NO_HMAC warning [Fixes GH-665]
Patched by @vipulnsward https://github.com/ruby/ruby/pull/665 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/ossl_hmac.c')
-rw-r--r--ext/openssl/ossl_hmac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/ossl_hmac.c b/ext/openssl/ossl_hmac.c
index 0bba44d..b1e853d 100644
--- a/ext/openssl/ossl_hmac.c
+++ b/ext/openssl/ossl_hmac.c
@@ -359,6 +359,6 @@ Init_ossl_hmac()
void
Init_ossl_hmac()
{
- rb_warning("HMAC will NOT be avaible: OpenSSL is compiled without HMAC.");
+ rb_warning("HMAC is not available: OpenSSL is compiled without HMAC.");
}
#endif /* NO_HMAC */