| 79 | } |
| 80 | |
| 81 | static APR_INLINE |
| 82 | unsigned long modssl_ERR_peek_error_data(const char **data, int *flags) |
| 83 | { |
| 84 | #if OPENSSL_VERSION_NUMBER < 0x30000000L |
| 85 | return ERR_peek_error_line_data(NULL, NULL, data, flags); |
| 86 | #else |
| 87 | return ERR_peek_error_data(data, flags); |
| 88 | #endif |
| 89 | } |
| 90 | |
| 91 | /* |
| 92 | * Prints the SSL library error information. |