diff options
author | Jason A. Donenfeld | 2013-05-25 14:50:19 +0200 |
---|---|---|
committer | Jason A. Donenfeld | 2013-05-25 20:33:28 +0200 |
commit | c0dfaf1c281d0697ce43131343d7a9f170a61ff9 (patch) | |
tree | e52a47596e72d9a7f1ebb19fd4fe5b3a39d95567 /cgit.c | |
parent | 3cb5d86dc68bab4883bf5a7cbc90f3e266237355 (diff) | |
download | cgit-c0dfaf1c281d0697ce43131343d7a9f170a61ff9.tar.gz cgit-c0dfaf1c281d0697ce43131343d7a9f170a61ff9.tar.bz2 cgit-c0dfaf1c281d0697ce43131343d7a9f170a61ff9.zip |
ui-summary: Pass filename to about-filter
This gives the about-filter API the same semantics as source-filter,
where the filter receives the filename so it can decide what to do next
with it.
While we're at it, plug a memory leak.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'cgit.c')
-rw-r--r-- | cgit.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,10 +37,10 @@ static struct cgit_filter *new_filter(const char *cmd, filter_type filtertype) | |||
37 | 37 | ||
38 | switch (filtertype) { | 38 | switch (filtertype) { |
39 | case SOURCE: | 39 | case SOURCE: |
40 | case ABOUT: | ||
40 | extra_args = 1; | 41 | extra_args = 1; |
41 | break; | 42 | break; |
42 | 43 | ||
43 | case ABOUT: | ||
44 | case COMMIT: | 44 | case COMMIT: |
45 | default: | 45 | default: |
46 | extra_args = 0; | 46 | extra_args = 0; |