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_s2k.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_s2k.c')
-rw-r--r-- | src/common/crypto_s2k.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/crypto_s2k.c b/src/common/crypto_s2k.c index 7d7f475b69..8543760ec5 100644 --- a/src/common/crypto_s2k.c +++ b/src/common/crypto_s2k.c @@ -12,13 +12,13 @@ #define CRYPTO_S2K_PRIVATE -#include "crypto.h" -#include "util.h" #include "compat.h" -#include "crypto_s2k.h" +#include "crypto.h" #include "crypto_digest.h" #include "crypto_rand.h" +#include "crypto_s2k.h" #include "crypto_util.h" +#include "util.h" #include <openssl/evp.h> |