summaryrefslogtreecommitdiffstats
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
commit76d3593d7e871a8d063867017fb0ac6a247e8503 (patch)
tree561e5df7dcf6d65f9b309e2b61ee13eaee1defb2
parent8d87616c451fccd02b4208146f9635d68f0e01c6 (diff)
downloadruby-76d3593d7e871a8d063867017fb0ac6a247e8503.tar.gz
ruby-76d3593d7e871a8d063867017fb0ac6a247e8503.tar.xz
ruby-76d3593d7e871a8d063867017fb0ac6a247e8503.zip
* ext/openssl/ossl.h (OSSL_Debug): should not use __func__.
[ruby-dev:28339] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@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 e18e4efa7..036fe9960 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]
+
Sat Feb 18 23:58:26 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/tracer.rb (Tracer::Tracer.add_filter): turn on tracer mode
diff --git a/ext/openssl/ossl.h b/ext/openssl/ossl.h
index f678ac118..f3c5a52bb 100644
--- a/ext/openssl/ossl.h
+++ b/ext/openssl/ossl.h
@@ -164,7 +164,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)