diff options
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | src/or/control.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 5e324a4c09..697a4c30e5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -65,7 +65,7 @@ test: check-spaces: ./contrib/checkSpace.pl -C \ src/common/*.h \ - src/common/[^as]*.c \ + src/common/[^asO]*.c \ src/or/[^et]*.[ch] src/or/t*.c src/or/eventdns_tor.h check-docs: 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]; |