diff options
author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-07-25 20:40:57 +0000 |
---|---|---|
committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-07-25 20:40:57 +0000 |
commit | b7b972cc71e8d72441efb11a7b258ac491a14eb8 (patch) | |
tree | ecc8fbb18171db14cfc9b15be77f0d2b27ea5f13 /ext/openssl/ossl.c | |
parent | a600ab0e44f34710e53492b898ca426cab6ce762 (diff) | |
download | ruby-b7b972cc71e8d72441efb11a7b258ac491a14eb8.tar.gz ruby-b7b972cc71e8d72441efb11a7b258ac491a14eb8.tar.xz ruby-b7b972cc71e8d72441efb11a7b258ac491a14eb8.zip |
* ext/openssl/ossl.h: fix comment.
* ext/openssl/ossl.c (ossl_debug): should enable if no va-args
macro supplied.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4165 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/ossl.c')
-rw-r--r-- | ext/openssl/ossl.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/openssl/ossl.c b/ext/openssl/ossl.c index 559f8806a..9e476cb5a 100644 --- a/ext/openssl/ossl.c +++ b/ext/openssl/ossl.c @@ -431,8 +431,9 @@ ossl_raise(VALUE exc, const char *fmt, ...) */ VALUE dOSSL; -#if defined(NT) || defined(_WIN32) -void ossl_debug(const char *fmt, ...) +#if !defined(HAVE_VA_ARGS_MACRO) +void +ossl_debug(const char *fmt, ...) { va_list args; |