Signed-off-by: David Turner <dtur...@twopensource.com>
---
 refs-be-files.c | 3 ++-
 refs.h          | 7 +++++++
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/refs-be-files.c b/refs-be-files.c
index 5170c5c..71c39ca 100644
--- a/refs-be-files.c
+++ b/refs-be-files.c
@@ -3607,7 +3607,7 @@ static int expire_reflog_ent(unsigned char *osha1, 
unsigned char *nsha1,
        return 0;
 }
 
-int reflog_expire(const char *refname, const unsigned char *sha1,
+static int files_reflog_expire(const char *refname, const unsigned char *sha1,
                 unsigned int flags,
                 reflog_expiry_prepare_fn prepare_fn,
                 reflog_expiry_should_prune_fn should_prune_fn,
@@ -3748,6 +3748,7 @@ struct ref_be refs_be_files = {
        files_reflog_exists,
        files_create_reflog,
        files_delete_reflog,
+       files_reflog_expire,
        files_resolve_ref_unsafe,
        files_verify_refname_available,
        files_pack_refs,
diff --git a/refs.h b/refs.h
index 76661ef..fd461e9 100644
--- a/refs.h
+++ b/refs.h
@@ -625,6 +625,12 @@ typedef int (*for_each_reflog_fn)(each_ref_fn fn, void 
*cb_data);
 typedef int (*reflog_exists_fn)(const char *refname);
 typedef int (*create_reflog_fn)(const char *refname, int force_create, struct 
strbuf *err);
 typedef int (*delete_reflog_fn)(const char *refname);
+typedef int (*reflog_expire_fn)(const char *refname, const unsigned char *sha1,
+                               unsigned int flags,
+                               reflog_expiry_prepare_fn prepare_fn,
+                               reflog_expiry_should_prune_fn should_prune_fn,
+                               reflog_expiry_cleanup_fn cleanup_fn,
+                               void *policy_cb_data);
 
 /* resolution functions */
 typedef void (*ref_transaction_free_fn)(struct ref_transaction *transaction);
@@ -679,6 +685,7 @@ struct ref_be {
        reflog_exists_fn reflog_exists;
        create_reflog_fn create_reflog;
        delete_reflog_fn delete_reflog;
+       reflog_expire_fn reflog_expire;
        resolve_ref_unsafe_fn resolve_ref_unsafe;
        verify_refname_available_fn verify_refname_available;
        pack_refs_fn pack_refs;
-- 
2.0.4.315.gad8727a-twtrsrc

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to