| 53 | }; |
| 54 | |
| 55 | static const char *ssl_log_annotation(const char *error) |
| 56 | { |
| 57 | int i = 0; |
| 58 | |
| 59 | while (ssl_log_annotate[i].cpPattern != NULL |
| 60 | && ap_strcmp_match(error, ssl_log_annotate[i].cpPattern) != 0) |
| 61 | i++; |
| 62 | |
| 63 | return ssl_log_annotate[i].cpAnnotation; |
| 64 | } |
| 65 | |
| 66 | apr_status_t ssl_die(server_rec *s) |
| 67 | { |
no test coverage detected