File: patch-3

package info (click to toggle)
mirror 2.9-13slink15
  • links: PTS
  • area: main
  • in suites: slink
  • size: 588 kB
  • ctags: 303
  • sloc: perl: 5,881; makefile: 131; sh: 56
file content (9 lines) | stat: -rw-r--r-- 380 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
--- dateconv.pl.orig	Fri May 29 15:04:32 1998
+++ dateconv.pl	Mon Jan 10 20:54:29 2000
@@ -149,5 +149,5 @@
 
 	local( $sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst ) =
 		 gmtime( $time );
-	return sprintf( "%2d $months[ $mon + 1 ] %2d %02d:%02d", $mday, $year, $hour, $min );
+ 	return sprintf( "%2d $months[ $mon + 1 ] %4d %02d:%02d", $mday, $year+1900, $hour, $min );
 }