mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/openssl/ossl.h (OSSL_Debug): should not use __func__.
[ruby-dev:28339] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9960 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2e7efc6413
commit
a6c936c15b
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Feb 20 00:57:02 2006 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||
|
||||
* ext/openssl/ossl.h (OSSL_Debug): should not use __func__.
|
||||
[ruby-dev:28339]
|
||||
|
||||
Mon Feb 20 00:13:49 2006 Tanaka Akira <akr@m17n.org>
|
||||
|
||||
* lib/open-uri.rb: add :ssl_verify_mode option.
|
||||
|
|
|
@ -165,7 +165,7 @@ extern VALUE dOSSL;
|
|||
if (dOSSL == Qtrue) { \
|
||||
fprintf(stderr, "OSSL_DEBUG: "); \
|
||||
fprintf(stderr, fmt, ##__VA_ARGS__); \
|
||||
fprintf(stderr, " [in %s (%s:%d)]\n", __func__, __FILE__, __LINE__); \
|
||||
fprintf(stderr, " [%s:%d]\n", __FILE__, __LINE__); \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
|
|
Loading…
Reference in a new issue