From 7ccdad7be83b8bd4fcd09a5bf224d33a64fa1d6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=9C=E9=83=A8=E6=98=8C=E5=B9=B3?= Date: Wed, 20 Jan 2021 11:01:35 +0900 Subject: [PATCH] fix OBJ_UNTRUST etc. It seems I broke them in commit 9e6e39c3512f7a962c44dc3729c98a0f8be90341 Sorry! --- include/ruby/internal/fl_type.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ruby/internal/fl_type.h b/include/ruby/internal/fl_type.h index 455448fe8d..994003653d 100644 --- a/include/ruby/internal/fl_type.h +++ b/include/ruby/internal/fl_type.h @@ -109,8 +109,8 @@ #define RB_OBJ_TAINTED RB_OBJ_TAINTED #define RB_OBJ_TAINTED_RAW RB_OBJ_TAINTED_RAW #define RB_OBJ_TAINT_RAW RB_OBJ_TAINT_RAW -#define RB_OBJ_UNTRUST RB_OBJ_UNTRUST -#define RB_OBJ_UNTRUSTED RB_OBJ_UNTRUSTED +#define RB_OBJ_UNTRUST RB_OBJ_TAINT +#define RB_OBJ_UNTRUSTED RB_OBJ_TAINTED /** @endcond */ /**