summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-14 11:03:22 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-14 11:03:22 +0000
commita254debc95f9dbeff6cdcc78a4992063f390958b (patch)
treee806f27e9608f4f4ac7ccf8493745e3800b16c86 /include
parenta9431f9bc8e0650eefb169ae77d93cb8299f49ee (diff)
downloadruby-a254debc95f9dbeff6cdcc78a4992063f390958b.tar.gz
ruby-a254debc95f9dbeff6cdcc78a4992063f390958b.tar.xz
ruby-a254debc95f9dbeff6cdcc78a4992063f390958b.zip
* include/ruby/ruby.h (rb_check_safe_str): deprecated.
* ext/openssl/ossl_x509store.c (ossl_x509store_add_{file,path}): replaced deprecated funtion. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r--include/ruby/ruby.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h
index 25459266a..0df679791 100644
--- a/include/ruby/ruby.h
+++ b/include/ruby/ruby.h
@@ -401,7 +401,7 @@ char *rb_string_value_cstr(volatile VALUE*);
#define StringValueCStr(v) rb_string_value_cstr(&(v))
void rb_check_safe_obj(VALUE);
-void rb_check_safe_str(VALUE);
+DEPRECATED(void rb_check_safe_str(VALUE));
#define SafeStringValue(v) do {\
StringValue(v);\
rb_check_safe_obj(v);\