properly refresh blowfish_endianess (+ throw away excess revert)
the original refresh of this patch went the wrong way. the original patch meant to define Q_BYTE_ORDER as detected by Qt and then run the code branches below, iff the order is little (x86, arm64 what have you) the change dfaure made in kwallet OTOH fixated the order to big. that'd not have been a problem though because the conditional branches in this file originally check QBO==QBE. a fact the debian patch also changes so now the conditional branches with the patch would never be true becuase they read QBO==QLE but QBO was hardcoded to QBE. this revision makes it so that the hardcoded QBE and QBO values of kwallet are no longer applied. this fixes a redefinition warning but more importantly should restore the original behavior that the conditionals are met on *actual* little endian systems.
Loading
Please register or sign in to comment