Yet another y2k bug. (printf("19%s %s", $3, $4);)

This commit is contained in:
Daniel O'Callaghan 1999-01-15 05:15:41 +00:00
parent 4e910ae91f
commit 63688efca7
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ foreach sfile (SCCS/s.*)
if ($status != 0) goto ERROR
# get file into current dir and get stats
set date = `sccs prs -r$rev $file | grep "^D " | awk '{printf("19%s %s", $3, $4); exit}'`
set date = `sccs prs -r$rev $file | grep "^D " | awk '{y=$3+1900; if($3 < 1970) {y+=100};printf("%s %s", y, $4);exit;}'`
set author = `sccs prs -r$rev $file | grep "^D " | awk '{print $5; exit}'`
echo ""
echo "==> file $file, rev=$rev, date=$date, author=$author"