all repos — cgit @ 334aed8ab42b9513af0f4458081abc033d66c535

a hyperfast web frontend for git written in c

ui-patch.c: Fix signature delimiter

Add a missing space after the "--" marker that introduces the patch
signature.

Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Lukas Fleischer cgit@cryptocrack.de
Mon, 26 Aug 2013 20:38:32 +0200
commit

334aed8ab42b9513af0f4458081abc033d66c535

parent

370535fc70e87e465e0d6b39420b0b6a72056b37

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M ui-patch.cui-patch.c

@@ -80,6 +80,6 @@ prepare_revision_walk(&rev);

while ((commit = get_revision(&rev)) != NULL) { log_tree_commit(&rev, commit); - printf("--\ncgit %s\n", cgit_version); + printf("-- \ncgit %s\n", cgit_version); } }