redis lookup returns false for things that should be true
authorSebastian Wiedenroth <wiedi@frubar.net>
Tue, 2 Sep 2014 10:41:30 +0000 (12:41 +0200)
committerSebastian Wiedenroth <wiedi@frubar.net>
Tue, 2 Sep 2014 10:41:30 +0000 (12:41 +0200)
commit972af88e604546ee2ab1f817b8a098056065dd78
treee5f2d53b6e6df51365ec648dc698a51c348ab469
parent791c21c8150041dc7cfa5302961485d942016053
redis lookup returns false for things that should be true

If redis returns an integer the lookup code currently checks if the value is 1 and returns false for all other values.
This is problematic if you want to use redis commands that return counts (ZCARD etc.) because you can't check for "does not exist" or "exists at least once". (It will be 0->false, 1->true, 2 or more-> false again)

This commit changes the code to handle integer values like C: 0 is false and everything else is true.

For the simple 0 and 1 values nothing changes to existing queries so this diff is backwards compatible.
For queries that return other values exim now gets the bool that would be expected.
src/src/lookups/redis.c