Whitespace/Indentation cleanup

This commit is contained in:
Per Allansson 2013-02-19 21:47:47 +01:00
parent 6aa4280d84
commit af82a27bff
2 changed files with 202 additions and 206 deletions

2
README
View File

@ -141,5 +141,3 @@ converting between different formats and so on, *please*
spend a few minutes searching on google for your particular spend a few minutes searching on google for your particular
problem since many people probably already have had your problem since many people probably already have had your
problem and solved it as well. problem and solved it as well.

View File

@ -305,7 +305,7 @@ static size_t curl_write( void *ptr, size_t sz, size_t nmemb, void *stream)
.. and it returns a base64 encoded PKCS#7 structure. .. and it returns a base64 encoded PKCS#7 structure.
*/ */
static int add_timestamp(PKCS7 *sig, char *url, char *proxy) static int add_timestamp(PKCS7 *sig, char *url, char *proxy)
{ {
@ -454,7 +454,7 @@ static void usage(const char *argv0)
#ifdef HACK_OPENSSL #ifdef HACK_OPENSSL
ASN1_TYPE *PKCS7_get_signed_attribute(PKCS7_SIGNER_INFO *si, int nid) ASN1_TYPE *PKCS7_get_signed_attribute(PKCS7_SIGNER_INFO *si, int nid)
/* ARGSUSED */ /* ARGSUSED */
{ {
/* Ehhhm. Hack. The PKCS7 sign method adds NID_pkcs9_signingTime if /* Ehhhm. Hack. The PKCS7 sign method adds NID_pkcs9_signingTime if
it isn't there. But we don't want it since M$ barfs on it. it isn't there. But we don't want it since M$ barfs on it.
@ -995,7 +995,7 @@ int main(int argc, char **argv)
return 0; return 0;
err_cleanup: err_cleanup:
ERR_print_errors_fp(stderr); ERR_print_errors_fp(stderr);
if (hash != NULL) if (hash != NULL)
BIO_free_all(hash); BIO_free_all(hash);
@ -1003,5 +1003,3 @@ int main(int argc, char **argv)
fprintf(stderr, "\nFailed\n"); fprintf(stderr, "\nFailed\n");
return -1; return -1;
} }