errstr.pod 738 B

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