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