about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xtests/t0108-patch.sh4
-rw-r--r--ui-patch.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/t0108-patch.sh b/tests/t0108-patch.sh index 867d739..33675af 100755 --- a/tests/t0108-patch.sh +++ b/tests/t0108-patch.sh
@@ -20,7 +20,7 @@ test_expect_success 'find `Subject:` line' '
20' 20'
21 21
22test_expect_success 'find `cgit` signature' ' 22test_expect_success 'find `cgit` signature' '
23 tail -1 tmp | grep "^cgit" 23 tail -2 tmp | head -1 | grep "^cgit"
24' 24'
25 25
26test_expect_success 'find initial commit' ' 26test_expect_success 'find initial commit' '
@@ -32,7 +32,7 @@ test_expect_success 'generate patch for initial commit' '
32' 32'
33 33
34test_expect_success 'find `cgit` signature' ' 34test_expect_success 'find `cgit` signature' '
35 tail -1 tmp | grep "^cgit" 35 tail -2 tmp | head -1 | grep "^cgit"
36' 36'
37 37
38test_done 38test_done
diff --git a/ui-patch.c b/ui-patch.c index 6df105e..333bb99 100644 --- a/ui-patch.c +++ b/ui-patch.c
@@ -80,6 +80,6 @@ void cgit_print_patch(const char *new_rev, const char *old_rev,
80 80
81 while ((commit = get_revision(&rev)) != NULL) { 81 while ((commit = get_revision(&rev)) != NULL) {
82 log_tree_commit(&rev, commit); 82 log_tree_commit(&rev, commit);
83 printf("-- \ncgit %s\n", cgit_version); 83 printf("-- \ncgit %s\n\n", cgit_version);
84 } 84 }
85} 85}