From 330218c7f75ed2a14e5b5cf8322932c9c42ce758 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Tue, 2 Dec 2008 23:13:40 +0000 Subject: [PATCH] #include "orconfig.h" in tor-checkkey.c to see if we can resolve an obscure compile warning on solaris svn:r17453 --- src/tools/tor-checkkey.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/tools/tor-checkkey.c b/src/tools/tor-checkkey.c index e0be6d7287..7807b541b9 100644 --- a/src/tools/tor-checkkey.c +++ b/src/tools/tor-checkkey.c @@ -1,6 +1,8 @@ #define CRYPTO_PRIVATE +#include "orconfig.h" + #include #include #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; } +