diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2011-11-16 16:40:56 +0100 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2011-11-16 16:40:56 +0100 |
commit | 8200a85323289f98a54b2a5293672cce8ddc5a2c (patch) | |
tree | c3b503988fa925aeb95d48a3aea170cb7eeeda0e /src | |
parent | 9fc7725aba8c623e2b35c4ceaee792d5f354912f (diff) | |
download | tor-8200a85323289f98a54b2a5293672cce8ddc5a2c.tar.gz tor-8200a85323289f98a54b2a5293672cce8ddc5a2c.zip |
Fix a check-spaces complaint
Diffstat (limited to 'src')
-rw-r--r-- | src/common/tortls.c | 4 |
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; |