about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorLars Hjemli2009-08-09 13:39:44 +0200
committerLars Hjemli2009-08-09 13:39:44 +0200
commit97b3d252629a8a3b9d356c2532dec7611438e4b9 (patch)
treeaa8225159ce897830f12b3f2f73f4af12f0d4f8e
parentAdd support for repo.commit-filter and repo.source-filter (diff)
downloadcgit-97b3d252629a8a3b9d356c2532dec7611438e4b9.tar.gz
cgit-97b3d252629a8a3b9d356c2532dec7611438e4b9.zip
cgit.c: allow repo.*-filter options to unset the current default
If e.g. repo.commit-filter is specified as an empty string, this
is now properly handled as disabling the global commit-filter setting
for the current repository.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r--cgit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgit.c b/cgit.c index fd341b8..b3a98c1 100644 --- a/cgit.c +++ b/cgit.c
@@ -21,7 +21,7 @@ struct cgit_filter *new_filter(const char *cmd, int extra_args)
21{ 21{
22 struct cgit_filter *f; 22 struct cgit_filter *f;
23 23
24 if (!cmd) 24 if (!cmd || !cmd[0])
25 return NULL; 25 return NULL;
26 26
27 f = xmalloc(sizeof(struct cgit_filter)); 27 f = xmalloc(sizeof(struct cgit_filter));