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