tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 4874b0006506d802718ce232f0f4694588e319d0
parent 97b5ff2b1d6ec59aea66cc262cf2545c98eefc5b
Author: Neel Chauhan <neel@neelc.org>
Date:   Fri, 15 Nov 2019 14:56:47 -0500

Remove the extra whitespace in the lines_eq() if statement in consdiff_gen_diff()

Diffstat:
Msrc/feature/dircommon/consdiff.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/feature/dircommon/consdiff.c b/src/feature/dircommon/consdiff.c @@ -1050,7 +1050,7 @@ consdiff_gen_diff(const smartlist_t *cons1, if (smartlist_len(cons2) == smartlist_len(ed_cons2)) { SMARTLIST_FOREACH_BEGIN(cons2, const cdline_t *, line1) { const cdline_t *line2 = smartlist_get(ed_cons2, line1_sl_idx); - if (! lines_eq(line1, line2) ) { + if (!lines_eq(line1, line2)) { cons2_eq = 0; break; }