summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2004-07-16 13:51:42 +0000
committerHarald Welte <laforge@gnumonks.org>2004-07-16 13:51:42 +0000
commit5e4bb564d9c1b7a4ecd14cac52224ae9c63b38b5 (patch)
tree8f87b874af22fff66ddbd1b537e9a14231f9425d /extensions
parentb9c6ec1fbe185b38071cdab9d50538ae35c8ad26 (diff)
In C, we declare variables at the top of function (Olivier Clerget)
Diffstat (limited to 'extensions')
-rw-r--r--extensions/libipt_time.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/extensions/libipt_time.c b/extensions/libipt_time.c
index 8b6077a6..7d722fbd 100644
--- a/extensions/libipt_time.c
+++ b/extensions/libipt_time.c
@@ -452,10 +452,11 @@ divide_time(int fulltime, int *hours, int *minutes)
static void
print_date(time_t date, char *command)
{
+ struct tm *t;
+
/* If it's default value, don't print..*/
if (((date == 0) || (date == LONG_MAX)) && (command != NULL))
return;
- struct tm *t;
t = localtime(&date);
if (command != NULL)
printf("%s %d:%d:%d:%d:%d:%d ", command, (t->tm_year + 1900), (t->tm_mon + 1),