aboutsummaryrefslogtreecommitdiff
path: root/src/or/replaycache.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/or/replaycache.h')
-rw-r--r--src/or/replaycache.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/replaycache.h b/src/or/replaycache.h
index 1cae3497ae..8f9db8c2b5 100644
--- a/src/or/replaycache.h
+++ b/src/or/replaycache.h
@@ -33,7 +33,8 @@ struct replaycache_s {
/* replaycache_t free/new */
-void replaycache_free(replaycache_t *r);
+void replaycache_free_(replaycache_t *r);
+#define replaycache_free(r) FREE_AND_NULL(replaycache, (r))
replaycache_t * replaycache_new(time_t horizon, time_t interval);
#ifdef REPLAYCACHE_PRIVATE