diff options
| author | Russell Belfer <rb@github.com> | 2013-09-10 16:53:09 -0700 |
|---|---|---|
| committer | Russell Belfer <rb@github.com> | 2013-09-17 09:31:44 -0700 |
| commit | 29e92d385e0bb43d45ddea5f8173d78fcceac3a6 (patch) | |
| tree | f83d2bdb78ea048a125b6a3195f8067d41f249de /include | |
| parent | 2a7d224f99a053d93079644947d04e7cc085930f (diff) | |
| download | libgit2-29e92d385e0bb43d45ddea5f8173d78fcceac3a6.tar.gz | |
Hook up filter initialize callback
I knew I forgot something
Diffstat (limited to 'include')
| -rw-r--r-- | include/git2/sys/filter.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/git2/sys/filter.h b/include/git2/sys/filter.h index ca1fbfcce..dbb086b0e 100644 --- a/include/git2/sys/filter.h +++ b/include/git2/sys/filter.h @@ -139,7 +139,9 @@ typedef void (*git_filter_cleanup_fn)( */ struct git_filter { unsigned int version; + const char *attributes; + git_filter_init_fn initialize; git_filter_shutdown_fn shutdown; git_filter_check_fn check; |
