Unidiff1 files changed, 1 insertions, 1 deletions
|
diff --git a/ui-log.c b/ui-log.c index bc0c02c..b9771fa 100644 --- a/ ui-log.c+++ b/ ui-log.c |
|
@@ -157,17 +157,17 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern |
157 | int argc = 2; |
157 | int argc = 2; |
158 | int i, columns = 3; |
158 | int i, columns = 3; |
159 | |
159 | |
160 | if (!tip) |
160 | if (!tip) |
161 | tip = ctx.qry.head; |
161 | tip = ctx.qry.head; |
162 | |
162 | |
163 | argv[1] = disambiguate_ref(tip); |
163 | argv[1] = disambiguate_ref(tip); |
164 | |
164 | |
165 | if (grep && pattern) { |
165 | if (grep && pattern && *pattern) { |
166 | if (!strcmp(grep, "grep") || !strcmp(grep, "author") || |
166 | if (!strcmp(grep, "grep") || !strcmp(grep, "author") || |
167 | !strcmp(grep, "committer")) |
167 | !strcmp(grep, "committer")) |
168 | argv[argc++] = fmt("--%s=%s", grep, pattern); |
168 | argv[argc++] = fmt("--%s=%s", grep, pattern); |
169 | if (!strcmp(grep, "range")) |
169 | if (!strcmp(grep, "range")) |
170 | argv[1] = pattern; |
170 | argv[1] = pattern; |
171 | } |
171 | } |
172 | |
172 | |
173 | if (path) { |
173 | if (path) { |
|