1ERRSTR(1) OpenSSL ERRSTR(1)
2
3
4
6 errstr - lookup error codes
7
9 openssl errstr error_code
10
12 Sometimes an application will not load error message and only numerical
13 forms will be available. The errstr utility can be used to display the
14 meaning of the hex code. The hex code is the hex digits after the
15 second colon.
16
18 The error code:
19
20 27594:error:2006D080:lib(32):func(109):reason(128):bss_file.c:107:
21
22 can be displayed with:
23
24 openssl errstr 2006D080
25
26 to produce the error message:
27
28 error:2006D080:BIO routines:BIO_new_file:no such file
29
31 err(3), ERR_load_crypto_strings(3), SSL_load_error_strings(3)
32
33
34
351.0.0e 2004-11-25 ERRSTR(1)