win32/sspi: Already Fixnum has been removed years ago

This commit is contained in:
Nobuyoshi Nakada 2024-05-03 22:22:19 +09:00
parent 65a0795c3f
commit 1179c86384
No known key found for this signature in database
GPG key ID: 3582D74E1FEE4465
Notes: git 2024-09-29 12:34:35 +00:00

View file

@ -204,7 +204,7 @@ module Win32
def ==(other) def ==(other)
if other.is_a?(SSPIResult) if other.is_a?(SSPIResult)
@value == other.value @value == other.value
elsif other.is_a?(Fixnum) elsif other.is_a?(Integer)
@value == @@map[other] @value == @@map[other]
else else
false false