aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-19 16:00:04 +0000
committergotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-19 16:00:04 +0000
commita6c936c15b2145b2a4219e2503301e5cd167f3e2 (patch)
tree950933286d6909f94589fca580c66614069d5ae9
parent2e7efc6413d9b05b370bca0c5ad31757897c7455 (diff)
downloadruby-a6c936c15b2145b2a4219e2503301e5cd167f3e2.tar.gz
* 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
-rw-r--r--ChangeLog5
-rw-r--r--ext/openssl/ossl.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e96e5e57b6..caee3d555f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/ext/openssl/ossl.h b/ext/openssl/ossl.h
index 42578f7a75..56b3b2ec18 100644
--- a/ext/openssl/ossl.h
+++ b/ext/openssl/ossl.h
@@ -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)