summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-02-11 04:58:22 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-02-11 04:58:22 +0000
commit0b71264edbee2adaf8be4c20315fc4ae84a63627 (patch)
tree54675d34853969a65b7aab847661b061064cc967 /ext
parentb97ceb66e97f2a36e5602f74a593c61292cbd33b (diff)
md5init.c: fix a typo
* ext/digest/md5/md5init.c: fix a typo, remove an extra underscore from a macro. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49566 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/digest/md5/md5init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/digest/md5/md5init.c b/ext/digest/md5/md5init.c
index db9298cbfc..bcd332d648 100644
--- a/ext/digest/md5/md5init.c
+++ b/ext/digest/md5/md5init.c
@@ -2,7 +2,7 @@
/* $Id$ */
#include "digest.h"
-#if defined(MD5_USE__OPENSSL)
+#if defined(MD5_USE_OPENSSL)
#include "md5ossl.h"
#elif defined(MD5_USE_COMMONDIGEST)
#include "md5cc.h"