about summary refs log tree commit diff stats
path: root/cmd.c
diff options
context:
space:
mode:
authorLukas Fleischer2013-08-14 10:50:32 +0200
committerJason A. Donenfeld2013-08-16 13:15:37 -0600
commit9003cc172a4cbc6678f3d8003ae1ad3a55f62fed (patch)
tree7ca3eae3de1a9851eeb2af473b88bdc6dab0550b /cmd.c
parentExtract filepair_cb from ui-patch.c (diff)
downloadcgit-9003cc172a4cbc6678f3d8003ae1ad3a55f62fed.tar.gz
cgit-9003cc172a4cbc6678f3d8003ae1ad3a55f62fed.zip
Allow for creating raw diffs with cgit_print_diff()
This adds a parameter to cgit_print_diff() to create raw diffs, using
the same format as `git diff <commit>`.

Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Diffstat (limited to 'cmd.c')
-rw-r--r--cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd.c b/cmd.c index abe8e46..10761ce 100644 --- a/cmd.c +++ b/cmd.c
@@ -57,7 +57,7 @@ static void commit_fn(struct cgit_context *ctx)
57 57
58static void diff_fn(struct cgit_context *ctx) 58static void diff_fn(struct cgit_context *ctx)
59{ 59{
60 cgit_print_diff(ctx->qry.sha1, ctx->qry.sha2, ctx->qry.path, 1); 60 cgit_print_diff(ctx->qry.sha1, ctx->qry.sha2, ctx->qry.path, 1, 0);
61} 61}
62 62
63static void info_fn(struct cgit_context *ctx) 63static void info_fn(struct cgit_context *ctx)