summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Hahn <sebastian@torproject.org>2011-11-16 16:40:56 +0100
committerSebastian Hahn <sebastian@torproject.org>2011-11-16 16:40:56 +0100
commit8200a85323289f98a54b2a5293672cce8ddc5a2c (patch)
treec3b503988fa925aeb95d48a3aea170cb7eeeda0e
parent9fc7725aba8c623e2b35c4ceaee792d5f354912f (diff)
downloadtor-8200a85323289f98a54b2a5293672cce8ddc5a2c.tar.gz
tor-8200a85323289f98a54b2a5293672cce8ddc5a2c.zip
Fix a check-spaces complaint
-rw-r--r--src/common/tortls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c
index a41a10d136..554deb7bda 100644
--- a/src/common/tortls.c
+++ b/src/common/tortls.c
@@ -2100,8 +2100,8 @@ tor_tls_check_lifetime(int severity, tor_tls_t *tls,
* <b>future_tolerance</b> seconds. If it is live, return 0. If it is not
* live, log a message and return -1. */
static int
-check_cert_lifetime_internal(int severity, const X509 *cert, int past_tolerance,
- int future_tolerance)
+check_cert_lifetime_internal(int severity, const X509 *cert,
+ int past_tolerance, int future_tolerance)
{
time_t now, t;