aboutsummaryrefslogtreecommitdiff
path: root/src/app
diff options
context:
space:
mode:
authorNeel Chauhan <neel@neelc.org>2019-11-15 15:05:16 -0500
committerNeel Chauhan <neel@neelc.org>2019-11-15 15:05:53 -0500
commitc8859eb7548f7173dfe98159abd6fd119d60ce94 (patch)
tree5b87529b0757d83cd55d8510879ff964c717587f /src/app
parent97b5ff2b1d6ec59aea66cc262cf2545c98eefc5b (diff)
downloadtor-c8859eb7548f7173dfe98159abd6fd119d60ce94.tar.gz
tor-c8859eb7548f7173dfe98159abd6fd119d60ce94.zip
Remove the extra whitespace around the DARWIN #defines
Diffstat (limited to 'src/app')
-rw-r--r--src/app/config/config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/config/config.c b/src/app/config/config.c
index c121775c04..3605cbd9f3 100644
--- a/src/app/config/config.c
+++ b/src/app/config/config.c
@@ -3228,13 +3228,13 @@ options_validate_cb(const void *old_options_, void *options_, char **msg)
if (!strcasecmp(options->TransProxyType, "default")) {
options->TransProxyType_parsed = TPT_DEFAULT;
} else if (!strcasecmp(options->TransProxyType, "pf-divert")) {
-#if !defined(OpenBSD) && !defined( DARWIN )
+#if !defined(OpenBSD) && !defined(DARWIN)
/* Later versions of OS X have pf */
REJECT("pf-divert is a OpenBSD-specific "
"and OS X/Darwin-specific feature.");
#else
options->TransProxyType_parsed = TPT_PF_DIVERT;
-#endif /* !defined(OpenBSD) && !defined( DARWIN ) */
+#endif /* !defined(OpenBSD) && !defined(DARWIN) */
} else if (!strcasecmp(options->TransProxyType, "tproxy")) {
#if !defined(__linux__)
REJECT("TPROXY is a Linux-specific feature.");