summaryrefslogtreecommitdiff
path: root/ext
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
commit406812a7964037718a6b21f32df953d627e43264 (patch)
tree561e5df7dcf6d65f9b309e2b61ee13eaee1defb2 /ext
parent279a53f40ba62a7522aedcac503ddc292d48aa22 (diff)
* ext/openssl/ossl.h (OSSL_Debug): should not use __func__.
[ruby-dev:28339] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9960 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/openssl/ossl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/ossl.h b/ext/openssl/ossl.h
index f678ac1188..f3c5a52bb8 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)