diff options
Diffstat (limited to 'make_combined_log.pl')
-rwxr-xr-x | make_combined_log.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make_combined_log.pl b/make_combined_log.pl index e72cabb..cefc728 100755 --- a/make_combined_log.pl +++ b/make_combined_log.pl | |||
@@ -1,6 +1,6 @@ | |||
1 | #!/usr/bin/perl | 1 | #!/usr/bin/perl |
2 | 2 | ||
3 | # $Id: make_combined_log.pl,v 1.3 2001/12/04 00:11:59 helios Exp $ | 3 | # $Id: make_combined_log.pl,v 1.4 2002/01/02 20:47:44 helios Exp $ |
4 | # | 4 | # |
5 | # make_combined_log.pl | 5 | # make_combined_log.pl |
6 | # | 6 | # |
@@ -93,7 +93,7 @@ while (@data = $records->fetchrow_array) { | |||
93 | 93 | ||
94 | # Create format for leading-zero formatting | 94 | # Create format for leading-zero formatting |
95 | if ($mday < 10) { $mday = "0$mday"; } | 95 | if ($mday < 10) { $mday = "0$mday"; } |
96 | if ($month < 10) { $month = "0$month"; } | 96 | if ($mon < 10) { $mon = "0$mon"; } |
97 | if ($hour < 10) { $hour = "0$hour"; } | 97 | if ($hour < 10) { $hour = "0$hour"; } |
98 | if ($min < 10) { $min = "0$min"; } | 98 | if ($min < 10) { $min = "0$min"; } |
99 | if ($sec < 10) { $sec = "0$sec"; } | 99 | if ($sec < 10) { $sec = "0$sec"; } |