summaryrefslogtreecommitdiff
path: root/src/or/control.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2008-02-19 05:08:27 +0000
committerNick Mathewson <nickm@torproject.org>2008-02-19 05:08:27 +0000
commit8c6b5d664093037bda36e023bf54c001c25f27f1 (patch)
treea980011038e4791fdde1f5a38d7a4e1390760298 /src/or/control.c
parent3277e2a8ca7914e3437f139fa6d4107f61f26a4e (diff)
downloadtor-8c6b5d664093037bda36e023bf54c001c25f27f1.tar.gz
tor-8c6b5d664093037bda36e023bf54c001c25f27f1.zip
r14246@tombo: nickm | 2008-02-17 19:33:02 -0500
Fix a wide line in control.c; make the check-spaces target ignore the openbsd malloc file. svn:r13566
Diffstat (limited to 'src/or/control.c')
-rw-r--r--src/or/control.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/control.c b/src/or/control.c
index 106327cc7d..3650170bd7 100644
--- a/src/or/control.c
+++ b/src/or/control.c
@@ -1064,7 +1064,8 @@ handle_control_authenticate(control_connection_t *conn, uint32_t len,
}
}
- if (options->HashedControlPassword || options->HashedControlSessionPassword) {
+ if (options->HashedControlPassword ||
+ options->HashedControlSessionPassword) {
int bad = 0;
smartlist_t *sl_tmp;
char received[DIGEST_LEN];