diff options
author | Isis Lovecruft <isis@torproject.org> | 2018-04-06 21:40:17 +0000 |
---|---|---|
committer | Isis Lovecruft <isis@torproject.org> | 2018-04-06 22:49:15 +0000 |
commit | 88190026b3286b32ac22c1bbd999b7f1de2aa79f (patch) | |
tree | 12edb665ef2ff55b1cac5cecfb45c0c32419e746 /src/common/crypto_pwbox.c | |
parent | 64e6551b8bb934335251c6965355660ec26e712d (diff) | |
download | tor-88190026b3286b32ac22c1bbd999b7f1de2aa79f.tar.gz tor-88190026b3286b32ac22c1bbd999b7f1de2aa79f.zip |
crypto: Alphabetise some #includes in /src/common/crypto*.
* FIXES part of #24658: https://bugs.torproject.org/24658
Diffstat (limited to 'src/common/crypto_pwbox.c')
-rw-r--r-- | src/common/crypto_pwbox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/crypto_pwbox.c b/src/common/crypto_pwbox.c index e49ca226ef..c2bd1d26cb 100644 --- a/src/common/crypto_pwbox.c +++ b/src/common/crypto_pwbox.c @@ -9,10 +9,10 @@ */ #include "crypto.h" -#include "crypto_s2k.h" -#include "crypto_pwbox.h" #include "crypto_digest.h" +#include "crypto_pwbox.h" #include "crypto_rand.h" +#include "crypto_s2k.h" #include "crypto_util.h" #include "di_ops.h" #include "util.h" |