diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-12-07 15:21:21 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-12-07 15:22:44 -0500 |
commit | 53d4e89626856eabe235c50ffc3d6a697f176741 (patch) | |
tree | d6e3619acf2e4ab1af9b728a4eb10c1e286911d8 /src/or | |
parent | e7ade23f9723f55a504ebd8279cbadf0aca108c6 (diff) | |
download | tor-53d4e89626856eabe235c50ffc3d6a697f176741.tar.gz tor-53d4e89626856eabe235c50ffc3d6a697f176741.zip |
Netbsd doesn't have ipfw, only the regular pf transport stuff.
Attempted fix for 19960.
Also, fixes a typo.
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index 8568ea9d64..3693cdf83c 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -3004,7 +3004,7 @@ options_validate(or_options_t *old_options, or_options_t *options, } else if (!strcasecmp(options->TransProxyType, "ipfw")) { #ifndef KERNEL_MAY_SUPPORT_IPFW /* Earlier versions of OS X have ipfw */ - REJECT("ipfw is a FreeBSD-specific" + REJECT("ipfw is a FreeBSD-specific " "and OS X/Darwin-specific feature."); #else options->TransProxyType_parsed = TPT_IPFW; |