From: William A. Rowe Jr Date: Thu, 17 Mar 2005 17:30:20 +0000 (+0000) Subject: Second fat-fingered typo in 24 hrs. Balance parens, this now compiles. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f39514b89b42d3a33e5f8f235fe20d5a0fbfd62a;p=thirdparty%2Fapache%2Fhttpd.git Second fat-fingered typo in 24 hrs. Balance parens, this now compiles. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@157947 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/ssl_engine_vars.c b/ssl_engine_vars.c index 4e625ce5a05..69d4b098c3d 100644 --- a/ssl_engine_vars.c +++ b/ssl_engine_vars.c @@ -489,7 +489,7 @@ static char *ssl_var_lookup_ssl_cert_remain(apr_pool_t *p, ASN1_UTCTIME *tm) return apr_pstrdup(p, "0"); } - diff = (long)(apr_time_sec(then) - apr_time_sec(now)) / (60*60*24)); + diff = (long)((apr_time_sec(then) - apr_time_sec(now)) / (60*60*24)); return diff > 0 ? apr_ltoa(p, diff) : apr_pstrdup(p, "0"); }