summaryrefslogtreecommitdiffstats
path: root/ext/openssl/ossl.h
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
commitc9c19e9a5111e70efc5cdf9e37903a95a90dd5bf (patch)
tree950933286d6909f94589fca580c66614069d5ae9 /ext/openssl/ossl.h
parent3aec1173c28b35ec64a3bb1bcdcf862d9ea9e4c0 (diff)
downloadruby-c9c19e9a5111e70efc5cdf9e37903a95a90dd5bf.tar.gz
ruby-c9c19e9a5111e70efc5cdf9e37903a95a90dd5bf.tar.xz
ruby-c9c19e9a5111e70efc5cdf9e37903a95a90dd5bf.zip
* ext/openssl/ossl.h (OSSL_Debug): should not use __func__.
[ruby-dev:28339] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9960 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/ossl.h')
-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 42578f7a7..56b3b2ec1 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)