diff options
author | Lukas Fleischer | 2013-08-26 20:38:33 +0200 |
---|---|---|
committer | Jason A. Donenfeld | 2013-08-26 21:03:23 +0200 |
commit | 840858594e8b48560541792b717a71dd802d5d80 (patch) | |
tree | c04992d711f13361dcc096c7235f4e1f2cca5244 | |
parent | 334aed8ab42b9513af0f4458081abc033d66c535 (diff) | |
download | cgit-840858594e8b48560541792b717a71dd802d5d80.tar.gz cgit-840858594e8b48560541792b717a71dd802d5d80.tar.bz2 cgit-840858594e8b48560541792b717a71dd802d5d80.zip |
ui-patch.c: Add additional newline after each patch
For consistency with git-format-patch(1).
Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
-rwxr-xr-x | tests/t0108-patch.sh | 4 | ||||
-rw-r--r-- | ui-patch.c | 2 |
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 | ||
22 | test_expect_success 'find `cgit` signature' ' | 22 | test_expect_success 'find `cgit` signature' ' |
23 | tail -1 tmp | grep "^cgit" | 23 | tail -2 tmp | head -1 | grep "^cgit" |
24 | ' | 24 | ' |
25 | 25 | ||
26 | test_expect_success 'find initial commit' ' | 26 | test_expect_success 'find initial commit' ' |
@@ -32,7 +32,7 @@ test_expect_success 'generate patch for initial commit' ' | |||
32 | ' | 32 | ' |
33 | 33 | ||
34 | test_expect_success 'find `cgit` signature' ' | 34 | test_expect_success 'find `cgit` signature' ' |
35 | tail -1 tmp | grep "^cgit" | 35 | tail -2 tmp | head -1 | grep "^cgit" |
36 | ' | 36 | ' |
37 | 37 | ||
38 | test_done | 38 | test_done |
@@ -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 | } |