From 22af79606a599d913bf539d6d8d7fa8cc2930bc7 Mon Sep 17 00:00:00 2001 From: Nik Bougalis Date: Tue, 13 May 2014 12:02:59 -0700 Subject: [PATCH] Fix lexicographical compare during tfRequireAuth processing --- src/ripple_app/transactors/CreateOfferLegacy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ripple_app/transactors/CreateOfferLegacy.cpp b/src/ripple_app/transactors/CreateOfferLegacy.cpp index e832c59ac..be773f6a4 100644 --- a/src/ripple_app/transactors/CreateOfferLegacy.cpp +++ b/src/ripple_app/transactors/CreateOfferLegacy.cpp @@ -873,7 +873,7 @@ TER ClassicOfferCreateTransactor::doApply () ? terNO_LINE : tecNO_LINE; } - else if (!is_bit_set (sleRippleState->getFieldU32 (sfFlags), (canonical_gt ? lsfHighAuth : lsfLowAuth))) + else if (!is_bit_set (sleRippleState->getFieldU32 (sfFlags), (canonical_gt ? lsfLowAuth : lsfHighAuth))) { m_journal.debug << "delay: can't receive IOUs from issuer without auth.";