From: Jonathan McDowell Date: Tue, 30 Sep 2014 21:34:21 +0000 (+0100) Subject: Use strtouq to parse keyid instead of strtoul X-Git-Tag: onak-0.4.4~1 X-Git-Url: http://the.earth.li/gitweb/?a=commitdiff_plain;h=3648a31750b3b42197c404483a18ca63d5f8777b;hp=3648a31750b3b42197c404483a18ca63d5f8777b;p=onak.git Use strtouq to parse keyid instead of strtoul The use of strtoul to parse the key ID breaks parsing 64 bit key IDs on 32 bit platforms. Use strtouq instead, which is defined as returning a 64 bit rather than being dependant on the length of "unsigned long". ---