aboutsummaryrefslogtreecommitdiffstats
path: root/ext/openssl/ossl_pkcs7.h
diff options
context:
space:
mode:
authorBen Toews <mastahyeti@gmail.com>2019-09-30 13:40:17 -0600
committerSamuel Williams <samuel.williams@oriontransfer.co.nz>2019-10-01 11:25:06 +1300
commit775a8c0fc5dd67f42840945ef779d20744e6212e (patch)
treee1f513a483ca3ae6902d2da53bb3592fa7270554 /ext/openssl/ossl_pkcs7.h
parent37aa1066b0e8b846ce4f2ad6014836fdc6b73bb9 (diff)
downloadruby-openssl-775a8c0fc5dd67f42840945ef779d20744e6212e.tar.gz
expand tabs
Diffstat (limited to 'ext/openssl/ossl_pkcs7.h')
-rw-r--r--ext/openssl/ossl_pkcs7.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/openssl/ossl_pkcs7.h b/ext/openssl/ossl_pkcs7.h
index 0d0fea7e..3e1b0946 100644
--- a/ext/openssl/ossl_pkcs7.h
+++ b/ext/openssl/ossl_pkcs7.h
@@ -14,14 +14,14 @@
TypedData_Wrap_Struct((klass), &ossl_pkcs7_type, 0)
#define SetPKCS7(obj, pkcs7) do { \
if (!(pkcs7)) { \
- ossl_raise(rb_eRuntimeError, "PKCS7 wasn't initialized."); \
+ ossl_raise(rb_eRuntimeError, "PKCS7 wasn't initialized."); \
} \
RTYPEDDATA_DATA(obj) = (pkcs7); \
} while (0)
#define GetPKCS7(obj, pkcs7) do { \
TypedData_Get_Struct((obj), PKCS7, &ossl_pkcs7_type, (pkcs7)); \
if (!(pkcs7)) { \
- ossl_raise(rb_eRuntimeError, "PKCS7 wasn't initialized."); \
+ ossl_raise(rb_eRuntimeError, "PKCS7 wasn't initialized."); \
} \
} while (0)