summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
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),