* Dan Holmsand (holmsand@gmail.com) wrote:
Konstantin Antselovich wrote:
quoted
I have updated to Cogito-0.11.3, it compiles and runs
but make test returns multiple error messages (see below)
There's a typo in rev-list.c. This fixes the tests for me:
This patch is white space damaged. I fixed it, and added it to the
cogito-0.11.3 rpm. Below is the refreshed patch.
thanks,
-chris
--
From: Dan Holmsand <redacted>
There's a typo in rev-list.c. This fixes the tests for me:
diff --git a/rev-list.c b/rev-list.c
--- a/rev-list.c
+++ b/rev-list.c
@@ -218,7 +218,7 @@ int main(int argc, char **argv)
list = limit_list(list);
show_commit_list(list);
} else {
-#ifdef NO_OPENSSL
+#ifndef NO_OPENSSL
if (sort_list_in_merge_order(list, &process_commit)) {
die("merge order sort failed\n");
}