mirror of
https://git.zx2c4.com/cgit
synced 2025-08-20 01:09:28 +02:00
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>
This commit is contained in:
parent
e976df2795
commit
97b3d25262
1 changed files with 1 additions and 1 deletions
2
cgit.c
2
cgit.c
|
@ -21,7 +21,7 @@ struct cgit_filter *new_filter(const char *cmd, int extra_args)
|
||||||
{
|
{
|
||||||
struct cgit_filter *f;
|
struct cgit_filter *f;
|
||||||
|
|
||||||
if (!cmd)
|
if (!cmd || !cmd[0])
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
f = xmalloc(sizeof(struct cgit_filter));
|
f = xmalloc(sizeof(struct cgit_filter));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue