1160814Ssimon=pod
2160814Ssimon
3160814Ssimon=head1 NAME
4160814Ssimon
5160814Ssimonerrstr - lookup error codes
6160814Ssimon
7160814Ssimon=head1 SYNOPSIS
8160814Ssimon
9160814SsimonB<openssl errstr error_code>
10160814Ssimon
11160814Ssimon=head1 DESCRIPTION
12160814Ssimon
13160814SsimonSometimes an application will not load error message and only
14160814Ssimonnumerical forms will be available. The B<errstr> utility can be used to 
15160814Ssimondisplay the meaning of the hex code. The hex code is the hex digits after the
16160814Ssimonsecond colon.
17160814Ssimon
18160814Ssimon=head1 EXAMPLE
19160814Ssimon
20160814SsimonThe error code:
21160814Ssimon
22160814Ssimon 27594:error:2006D080:lib(32):func(109):reason(128):bss_file.c:107:
23160814Ssimon
24160814Ssimoncan be displayed with:
25160814Ssimon 
26160814Ssimon openssl errstr 2006D080
27160814Ssimon
28160814Ssimonto produce the error message:
29160814Ssimon
30160814Ssimon error:2006D080:BIO routines:BIO_new_file:no such file
31160814Ssimon
32160814Ssimon=head1 SEE ALSO
33160814Ssimon
34160814SsimonL<err(3)|err(3)>,
35160814SsimonL<ERR_load_crypto_strings(3)|ERR_load_crypto_strings(3)>,
36160814SsimonL<SSL_load_error_strings(3)|SSL_load_error_strings(3)>
37160814Ssimon
38160814Ssimon
39160814Ssimon=cut
40