diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-12-07 10:52:55 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-12-08 14:47:19 -0500 |
commit | 17dcce3fe11bfea9c7c46d2b9fd5baeb63ebe1e2 (patch) | |
tree | f4aa0a4ea953572110a0862738a4a98d989fb2c7 /src/common/tortls.h | |
parent | 285632a61b4e4aeec07b26004396473e0d8f4a43 (diff) | |
download | tor-17dcce3fe11bfea9c7c46d2b9fd5baeb63ebe1e2.tar.gz tor-17dcce3fe11bfea9c7c46d2b9fd5baeb63ebe1e2.zip |
Fix wide lines introduced by previous patch.
Diffstat (limited to 'src/common/tortls.h')
-rw-r--r-- | src/common/tortls.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/tortls.h b/src/common/tortls.h index df8597db02..1dbf0b332f 100644 --- a/src/common/tortls.h +++ b/src/common/tortls.h @@ -265,7 +265,8 @@ void tor_tls_log_one_error(tor_tls_t *tls, unsigned long err, int severity, int domain, const char *doing); void tor_x509_cert_free_(tor_x509_cert_t *cert); -#define tor_x509_cert_free(c) FREE_AND_NULL(tor_x509_cert_t, tor_x509_cert_free_, (c)) +#define tor_x509_cert_free(c) \ + FREE_AND_NULL(tor_x509_cert_t, tor_x509_cert_free_, (c)) tor_x509_cert_t *tor_x509_cert_decode(const uint8_t *certificate, size_t certificate_len); void tor_x509_cert_get_der(const tor_x509_cert_t *cert, |