summaryrefslogtreecommitdiff
path: root/src/or/entrynodes.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2017-12-07 10:52:55 -0500
committerNick Mathewson <nickm@torproject.org>2017-12-08 14:47:19 -0500
commit17dcce3fe11bfea9c7c46d2b9fd5baeb63ebe1e2 (patch)
treef4aa0a4ea953572110a0862738a4a98d989fb2c7 /src/or/entrynodes.h
parent285632a61b4e4aeec07b26004396473e0d8f4a43 (diff)
downloadtor-17dcce3fe11bfea9c7c46d2b9fd5baeb63ebe1e2.tar.gz
tor-17dcce3fe11bfea9c7c46d2b9fd5baeb63ebe1e2.zip
Fix wide lines introduced by previous patch.
Diffstat (limited to 'src/or/entrynodes.h')
-rw-r--r--src/or/entrynodes.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/or/entrynodes.h b/src/or/entrynodes.h
index 32fcfeadfb..f2c8d35bfe 100644
--- a/src/or/entrynodes.h
+++ b/src/or/entrynodes.h
@@ -487,7 +487,8 @@ STATIC guard_selection_t *guard_selection_new(const char *name,
STATIC guard_selection_t *get_guard_selection_by_name(
const char *name, guard_selection_type_t type, int create_if_absent);
STATIC void guard_selection_free_(guard_selection_t *gs);
-#define guard_selection_free(gs) FREE_AND_NULL(guard_selection_t, guard_selection_free_, (gs))
+#define guard_selection_free(gs) \
+ FREE_AND_NULL(guard_selection_t, guard_selection_free_, (gs))
MOCK_DECL(STATIC int, entry_guard_is_listed,
(guard_selection_t *gs, const entry_guard_t *guard));
STATIC const char *choose_guard_selection(const or_options_t *options,
@@ -572,8 +573,9 @@ STATIC entry_guard_restriction_t *guard_create_exit_restriction(
STATIC entry_guard_restriction_t *guard_create_dirserver_md_restriction(void);
STATIC void entry_guard_restriction_free_(entry_guard_restriction_t *rst);
-#define entry_guard_restriction_free(rst) \
- FREE_AND_NULL(entry_guard_restriction_t, entry_guard_restriction_free_, (rst))
+#define entry_guard_restriction_free(rst) \
+ FREE_AND_NULL(entry_guard_restriction_t, \
+ entry_guard_restriction_free_, (rst))
#endif /* defined(ENTRYNODES_PRIVATE) */