clean up whitespace in src/tools

This commit is contained in:
Nick Mathewson
2010-05-20 22:30:08 -04:00
parent 4c38069b39
commit 9563b0d508
3 changed files with 4 additions and 6 deletions
+2 -1
View File
@@ -12,7 +12,8 @@
#include <openssl/bn.h>
#include <openssl/rsa.h>
int main(int c, char **v)
int
main(int c, char **v)
{
crypto_pk_env_t *env;
char *str;
-3
View File
@@ -64,7 +64,6 @@ show_help(void)
"[-c certificate_file]\n"
" [-m lifetime_in_months] [-a address:port] "
"[--passphrase-fd <fd>]\n");
}
/* XXXX copied from crypto.c */
@@ -408,7 +407,6 @@ get_fingerprint(EVP_PKEY *pkey, char *out)
return r;
}
/** Set <b>out</b> to the hex-encoded fingerprint of <b>pkey</b>. */
static int
get_digest(EVP_PKEY *pkey, char *out)
@@ -502,7 +500,6 @@ generate_certificate(void)
return 0;
}
/** Entry point to tor-gencert */
int
main(int argc, char **argv)
+2 -2
View File
@@ -148,7 +148,7 @@ parse_socks4a_resolve_response(const char *hostname,
static const char *
socks5_reason_to_string(char reason)
{
switch(reason) {
switch (reason) {
case SOCKS5_SUCCEEDED:
return "succeeded";
case SOCKS5_GENERAL_ERROR:
@@ -251,7 +251,7 @@ do_resolve(const char *hostname, uint32_t sockshost, uint16_t socksport,
}
if (parse_socks4a_resolve_response(hostname,
reply_buf, RESPONSE_LEN_4,
result_addr)<0){
result_addr)<0) {
return -1;
}
} else {