summaryrefslogtreecommitdiffabout
path: root/ui-log.c
Side-by-side diff
Diffstat (limited to 'ui-log.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-log.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/ui-log.c b/ui-log.c
index 7d1985e..6d5509b 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -55,3 +55,3 @@ void print_commit(struct commit *commit)
-void cgit_print_log(const char *tip, int ofs, int cnt, char *grep)
+void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path)
{
@@ -59,3 +59,3 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep)
struct commit *commit;
- const char *argv[3] = {NULL, tip, NULL};
+ const char *argv[] = {NULL, tip, NULL, NULL, NULL};
int argc = 2;
@@ -65,2 +65,6 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep)
argv[argc++] = fmt("--grep=%s", grep);
+ if (path) {
+ argv[argc++] = "--";
+ argv[argc++] = path;
+ }
init_revisions(&rev, NULL);