[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[or-cvs] r17453: {tor} #include "orconfig.h" in tor-checkkey.c to see if we can res (tor/trunk/src/tools)



Author: arma
Date: 2008-12-02 18:13:40 -0500 (Tue, 02 Dec 2008)
New Revision: 17453

Modified:
   tor/trunk/src/tools/tor-checkkey.c
Log:
#include "orconfig.h" in tor-checkkey.c to see if we can resolve
an obscure compile warning on solaris


Modified: tor/trunk/src/tools/tor-checkkey.c
===================================================================
--- tor/trunk/src/tools/tor-checkkey.c	2008-12-02 23:02:31 UTC (rev 17452)
+++ tor/trunk/src/tools/tor-checkkey.c	2008-12-02 23:13:40 UTC (rev 17453)
@@ -1,6 +1,8 @@
 
 #define CRYPTO_PRIVATE
 
+#include "orconfig.h"
+
 #include <stdio.h>
 #include <stdlib.h>
 #include "crypto.h"
@@ -18,7 +20,9 @@
   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 @@
 
   return 0;
 }
+