You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2005/03/17 18:30:22 UTC

svn commit: r157947 - httpd/httpd/trunk/modules/ssl/ssl_engine_vars.c

Author: wrowe
Date: Thu Mar 17 09:30:20 2005
New Revision: 157947

URL: http://svn.apache.org/viewcvs?view=rev&rev=157947
Log:

  Second fat-fingered typo in 24 hrs.  Balance parens, this now compiles.

Modified:
    httpd/httpd/trunk/modules/ssl/ssl_engine_vars.c

Modified: httpd/httpd/trunk/modules/ssl/ssl_engine_vars.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/ssl/ssl_engine_vars.c?view=diff&r1=157946&r2=157947
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_vars.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_vars.c Thu Mar 17 09:30:20 2005
@@ -489,7 +489,7 @@
         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");
 }