about summary refs log tree commit
path: root/filter.c
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2014-01-13 16:24:40 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2014-01-14 02:00:07 +0100
commit786609bd36c07b85dbf905fc8c36eba7132122d7 (patch)
tree03d3a49c01b89e7122bdde4ad088fc225a819e7b /filter.c
parente942a1622bddf3338096393c3906c1adc871d198 (diff)
downloadcgit-786609bd36c07b85dbf905fc8c36eba7132122d7.tar.gz
filter: add page source to email filter
Since the email filter is called from lots of places, the script might
benefit from knowing the origin. That way it can modify its contents
and/or size depending.

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'filter.c')
-rw-r--r--filter.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/filter.c b/filter.c
index 08ce7a5..aa36026 100644
--- a/filter.c
+++ b/filter.c
@@ -406,6 +406,9 @@ struct cgit_filter *cgit_new_filter(const char *cmd, filter_type filtertype)
 
         switch (filtertype) {
                 case EMAIL:
+                        argument_count = 2;
+                        break;
+
                 case SOURCE:
                 case ABOUT:
                         argument_count = 1;