Loading ssl_engine_log.c +3 −2 Original line number Diff line number Diff line Loading @@ -118,8 +118,9 @@ void ssl_log_ssl_error(const char *file, int line, int level, server_rec *s) unsigned long e; while ((e = ERR_get_error())) { char *err, *annotation; err = ERR_error_string(e, NULL); char err[256], *annotation; ERR_error_string_n(e, err, sizeof err); annotation = ssl_log_annotation(err); if (annotation) { Loading Loading
ssl_engine_log.c +3 −2 Original line number Diff line number Diff line Loading @@ -118,8 +118,9 @@ void ssl_log_ssl_error(const char *file, int line, int level, server_rec *s) unsigned long e; while ((e = ERR_get_error())) { char *err, *annotation; err = ERR_error_string(e, NULL); char err[256], *annotation; ERR_error_string_n(e, err, sizeof err); annotation = ssl_log_annotation(err); if (annotation) { Loading