Changes between Initial Version and Version 1 of Ticket #646, comment 5
- Timestamp:
- 01/06/16 09:43:39 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #646, comment 5
initial v1 7 7 while ((err = ERR_get_error ())) 8 8 { 9 msg (D_CRYPT_ERRORS, "OpenSSL error : %s",9 msg (D_CRYPT_ERRORS, "OpenSSL error (%d): %s", err, 10 10 ERR_error_string (err, NULL)); 11 11 } … … 13 13 14 14 inside the if-clause of `rand_bytes()`? 15 16 Edit: also print error code, not just string.