diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-11-10 12:22:34 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-11-10 12:22:34 -0500 |
commit | 56ac75b265ccd2c5f3e16cd3584ab64c47a77f9e (patch) | |
tree | f5a77009cf491cc267f9743fcbc4c578c4402dee | |
parent | 532f70a8076de227cd7f31e7bb3474f3b90d6b58 (diff) | |
download | tor-56ac75b265ccd2c5f3e16cd3584ab64c47a77f9e.tar.gz tor-56ac75b265ccd2c5f3e16cd3584ab64c47a77f9e.zip |
Fix a wide line
-rw-r--r-- | src/or/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/config.c b/src/or/config.c index 7274b7e5b3..3984755dd6 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -3182,8 +3182,8 @@ options_validate(or_options_t *old_options, or_options_t *options, (options->AlternateDirAuthority && options->AlternateBridgeAuthority))) { REJECT("TestingTorNetwork may only be configured in combination with " - "a non-default set of DirAuthority or both of AlternateDirAuthority " - "and AlternateBridgeAuthority configured."); + "a non-default set of DirAuthority or both of " + "AlternateDirAuthority and AlternateBridgeAuthority configured."); } if (options->AllowSingleHopExits && !options->DirAuthorities) { |