1*ebfedea0SLionel Sambuc=pod 2*ebfedea0SLionel Sambuc 3*ebfedea0SLionel Sambuc=head1 NAME 4*ebfedea0SLionel Sambuc 5*ebfedea0SLionel Sambucerrstr - lookup error codes 6*ebfedea0SLionel Sambuc 7*ebfedea0SLionel Sambuc=head1 SYNOPSIS 8*ebfedea0SLionel Sambuc 9*ebfedea0SLionel SambucB<openssl errstr error_code> 10*ebfedea0SLionel Sambuc 11*ebfedea0SLionel Sambuc=head1 DESCRIPTION 12*ebfedea0SLionel Sambuc 13*ebfedea0SLionel SambucSometimes an application will not load error message and only 14*ebfedea0SLionel Sambucnumerical forms will be available. The B<errstr> utility can be used to 15*ebfedea0SLionel Sambucdisplay the meaning of the hex code. The hex code is the hex digits after the 16*ebfedea0SLionel Sambucsecond colon. 17*ebfedea0SLionel Sambuc 18*ebfedea0SLionel Sambuc=head1 EXAMPLE 19*ebfedea0SLionel Sambuc 20*ebfedea0SLionel SambucThe error code: 21*ebfedea0SLionel Sambuc 22*ebfedea0SLionel Sambuc 27594:error:2006D080:lib(32):func(109):reason(128):bss_file.c:107: 23*ebfedea0SLionel Sambuc 24*ebfedea0SLionel Sambuccan be displayed with: 25*ebfedea0SLionel Sambuc 26*ebfedea0SLionel Sambuc openssl errstr 2006D080 27*ebfedea0SLionel Sambuc 28*ebfedea0SLionel Sambucto produce the error message: 29*ebfedea0SLionel Sambuc 30*ebfedea0SLionel Sambuc error:2006D080:BIO routines:BIO_new_file:no such file 31*ebfedea0SLionel Sambuc 32*ebfedea0SLionel Sambuc=head1 SEE ALSO 33*ebfedea0SLionel Sambuc 34*ebfedea0SLionel SambucL<err(3)|err(3)>, 35*ebfedea0SLionel SambucL<ERR_load_crypto_strings(3)|ERR_load_crypto_strings(3)>, 36*ebfedea0SLionel SambucL<SSL_load_error_strings(3)|SSL_load_error_strings(3)> 37*ebfedea0SLionel Sambuc 38*ebfedea0SLionel Sambuc 39*ebfedea0SLionel Sambuc=cut 40