diff options
author | Neel Chauhan <neel@neelc.org> | 2019-11-15 15:05:16 -0500 |
---|---|---|
committer | Neel Chauhan <neel@neelc.org> | 2019-11-15 15:05:53 -0500 |
commit | c8859eb7548f7173dfe98159abd6fd119d60ce94 (patch) | |
tree | 5b87529b0757d83cd55d8510879ff964c717587f /src/test/test_options.c | |
parent | 97b5ff2b1d6ec59aea66cc262cf2545c98eefc5b (diff) | |
download | tor-c8859eb7548f7173dfe98159abd6fd119d60ce94.tar.gz tor-c8859eb7548f7173dfe98159abd6fd119d60ce94.zip |
Remove the extra whitespace around the DARWIN #defines
Diffstat (limited to 'src/test/test_options.c')
-rw-r--r-- | src/test/test_options.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/test_options.c b/src/test/test_options.c index 8aa4bf0906..e3b86c81ad 100644 --- a/src/test/test_options.c +++ b/src/test/test_options.c @@ -1071,14 +1071,14 @@ test_options_validate__transproxy(void *ignored) ret = options_validate(NULL, tdata->opt, &msg); tt_int_op(ret, OP_EQ, -1); -#if !defined(OpenBSD) && !defined( DARWIN ) +#if !defined(OpenBSD) && !defined(DARWIN) tt_str_op(msg, OP_EQ, "pf-divert is a OpenBSD-specific and OS X/Darwin-specific feature."); #else tt_int_op(tdata->opt->TransProxyType_parsed, OP_EQ, TPT_PF_DIVERT); tt_str_op(msg, OP_EQ, "Cannot use TransProxyType without " "any valid TransPort."); -#endif /* !defined(OpenBSD) && !defined( DARWIN ) */ +#endif /* !defined(OpenBSD) && !defined(DARWIN) */ tor_free(msg); // Test tproxy trans proxy |