diff options
-rw-r--r-- | src/tools/tor-checkkey.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/tools/tor-checkkey.c b/src/tools/tor-checkkey.c index e0be6d728..7807b541b 100644 --- a/src/tools/tor-checkkey.c +++ b/src/tools/tor-checkkey.c @@ -1,6 +1,8 @@ #define CRYPTO_PRIVATE +#include "orconfig.h" + #include <stdio.h> #include <stdlib.h> #include "crypto.h" @@ -18,7 +20,9 @@ int main(int c, char **v) init_logging(); if (c < 2) { - fprintf(stderr, "Hi. I'm tor-checkkey. Tell me a filename that has a PEM-encoded RSA public key (like in a cert) and I'll dump the modulus.\n"); + fprintf(stderr, "Hi. I'm tor-checkkey. Tell me a filename that " + "has a PEM-encoded RSA public key (like in a cert) and I'll " + "dump the modulus.\n"); return 1; } @@ -47,3 +51,4 @@ int main(int c, char **v) return 0; } + |