NAME
ERRprinterrors, ERRprinterrorsfp - print error messages
SYNOPSIS
#include
void ERRprinterrors(BIO *bp); void ERRprinterrorsfp(FILE *fp);DESCRIPTION
ERRprinterrors() is a convenience function that prints the error strings for all errors that OpenSSL has recorded to bbpp, thus emptying the error queue. ERRprinterrorsfp() is the same, except that the output goes to a FFIILLEE. The error strings will have the following format: [pid]:error:[error code]:[library name]:[function name]:[reason string]:[file name]:[line]:[optional text message] error code is an 8 digit hexadecimal number. library name, function name and reason string are ASCII text, as is optional text message if one was set for the respective error code. If there is no text string registered for the given error code, the error string will contain the numeric code.RETURN VALUES
ERRprinterrors() and ERRprinterrorsfp() return no values.SEE ALSO
err(3), ERRerrorstring(3), ERRgeterror(3), ERRloadcryptostrings(3), SSLloaderrorstrings(3) HISTORY ERRprinterrors() and ERRprinterrorsfp() are available in all versions of SSLeay and OpenSSL.0.9.7l 2000-01-31 ERRprinterrors(3)