diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-05-26 14:05:50 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-05-26 14:07:06 -0400 |
commit | 6fcaf83c98df4a12149cd4b5956cd96f3e59ccfd (patch) | |
tree | a382e4ee2ca8f59a8f487bfe79f25794838dce30 /src/common/tortls.c | |
parent | 5742e4fd8ea28c21f4f8f8a809c88a0b31a5d73d (diff) | |
download | tor-6fcaf83c98df4a12149cd4b5956cd96f3e59ccfd.tar.gz tor-6fcaf83c98df4a12149cd4b5956cd96f3e59ccfd.zip |
Cleanup MOCK_IMPL (etc) to be findable with etags
A fair number of our mock_impl declarations were messed up so that
even our special AM_ETAGSFLAGS couldn't find them.
This should be a whitespace-only patch.
Diffstat (limited to 'src/common/tortls.c')
-rw-r--r-- | src/common/tortls.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c index fadf52fa0a..42fb91a9f7 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -460,11 +460,11 @@ tor_x509_name_new(const char *cname) * Return a certificate on success, NULL on failure. */ MOCK_IMPL(STATIC X509 *, - tor_tls_create_certificate,(crypto_pk_t *rsa, - crypto_pk_t *rsa_sign, - const char *cname, - const char *cname_sign, - unsigned int cert_lifetime)) +tor_tls_create_certificate,(crypto_pk_t *rsa, + crypto_pk_t *rsa_sign, + const char *cname, + const char *cname_sign, + unsigned int cert_lifetime)) { /* OpenSSL generates self-signed certificates with random 64-bit serial * numbers, so let's do that too. */ @@ -662,7 +662,7 @@ tor_x509_cert_free(tor_x509_cert_t *cert) * Steals a reference to x509_cert. */ MOCK_IMPL(STATIC tor_x509_cert_t *, - tor_x509_cert_new,(X509 *x509_cert)) +tor_x509_cert_new,(X509 *x509_cert)) { tor_x509_cert_t *cert; EVP_PKEY *pkey; |