Do not put a space before ';' when terminating a statement or in a 'for' statement.

This commit is contained in:
Andreas Gustafsson
2001-11-27 00:56:32 +00:00
parent 4d1d37a19d
commit f1b6872550
53 changed files with 205 additions and 205 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: time.c,v 1.20 2001/11/12 19:05:33 gson Exp $ */
/* $Id: time.c,v 1.21 2001/11/27 00:55:57 gson Exp $ */
#include <config.h>
@@ -145,7 +145,7 @@ dns_time64_fromtext(const char *source, isc_int64_t *target) {
* Calulate seconds since epoch.
*/
value = second + (60 * minute) + (3600 * hour) + ((day - 1) * 86400);
for (i = 0; i < (month - 1) ; i++)
for (i = 0; i < (month - 1); i++)
value += days[i] * 86400;
if (is_leap(year) && month > 2)
value += 86400;