diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-09 12:15:36 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-09 12:15:36 -0200 |
commit | 52a46b4e73254e188725f762306992263c7a1395 (patch) | |
tree | f974bdf029f046306de0f3edeabc14515be5d152 /v4l/scripts/hghead.pl | |
parent | 4c923cc75d486f3050defab73c86a1b50fa47449 (diff) | |
download | mediapointer-dvb-s2-52a46b4e73254e188725f762306992263c7a1395.tar.gz mediapointer-dvb-s2-52a46b4e73254e188725f762306992263c7a1395.tar.bz2 |
Fix date parsing for mailimport script to work
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'v4l/scripts/hghead.pl')
-rwxr-xr-x | v4l/scripts/hghead.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/v4l/scripts/hghead.pl b/v4l/scripts/hghead.pl index af8b7914f..9a6389311 100755 --- a/v4l/scripts/hghead.pl +++ b/v4l/scripts/hghead.pl @@ -53,7 +53,7 @@ while ($line = <IN>) { my $time = str2time($1); if ($time) { - print "#Date: $time\n"; + print "#Date: $time 0\n"; } else { print "#Date: $1\n"; } |