commit | 96d2654fc7b1e76773371ccb914457afb3767683 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Sep 27 02:13:40 2015 -0700 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Sep 27 02:13:40 2015 -0700 |
tree | 58cc2987d5131a57727f727e9940bdd58fce5caf | |
parent | 02dc7d1272593ccbcad16af89696cc0d9b76e99d [diff] |
fix spacing
diff --git a/Modules/_hashopenssl.c b/Modules/_hashopenssl.c index df53e96..01f4577 100644 --- a/Modules/_hashopenssl.c +++ b/Modules/_hashopenssl.c
@@ -532,8 +532,8 @@ HMAC_CTX_cleanup(&hctx_tpl); return 0; } - while(tkeylen) { - if(tkeylen > mdlen) + while (tkeylen) { + if (tkeylen > mdlen) cplen = mdlen; else cplen = tkeylen;