Travis Cross cbde2faab2 Fix confusion between size_t and ssize_t
readfile returns a value of type ssize_t (signed) and returns -1 if an
error occurs.  In auth_readdb_internal, however, we were assigning the
return value of readfile to a variable of type size_t (unsigned), but
then testing this unsigned value to see if it was < 0, a
contradiction.  We would thus simultaneously fail to report the error
in readfile and would end up with a corrupted length value.
2012-06-25 06:38:30 +00:00
..
2012-06-25 06:38:29 +00:00
2012-05-03 18:55:06 -05:00
2012-05-03 16:31:21 -05:00
2012-03-01 10:04:07 -06:00
2012-06-25 06:38:30 +00:00
2011-07-27 12:26:43 -04:00