mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
448c87008e
commit
e63f0a92c3
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Mon Jul 28 04:35:35 2014 Zachary Scott <e@zzak.io>
|
||||||
|
|
||||||
|
* ext/openssl/ossl_hmac.c: Fix NO_HMAC warning [Fixes GH-665]
|
||||||
|
Patched by @vipulnsward https://github.com/ruby/ruby/pull/665
|
||||||
|
|
||||||
Sun Jul 27 19:49:36 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
|
Sun Jul 27 19:49:36 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
|
||||||
|
|
||||||
* lib/cgi/core.rb: remove unused variables.
|
* lib/cgi/core.rb: remove unused variables.
|
||||||
|
|
|
@ -359,6 +359,6 @@ Init_ossl_hmac()
|
||||||
void
|
void
|
||||||
Init_ossl_hmac()
|
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 */
|
#endif /* NO_HMAC */
|
||||||
|
|
Loading…
Add table
Reference in a new issue