aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel O'Callaghan <danny@FreeBSD.org>1999-01-15 05:15:41 +0000
committerDaniel O'Callaghan <danny@FreeBSD.org>1999-01-15 05:15:41 +0000
commit63688efca7d60aab65c33923f35a172e3aa980a7 (patch)
treefc4b8a3fc8e2f75d8e1c49aeee596bceec16bb43
parent4e910ae91fc5957bb926db07246502404a6016ef (diff)
downloadsrc-63688efca7d60aab65c33923f35a172e3aa980a7.tar.gz
src-63688efca7d60aab65c33923f35a172e3aa980a7.zip
Yet another y2k bug. (printf("19%s %s", $3, $4);)
Notes
Notes: svn path=/head/; revision=42685
-rw-r--r--contrib/cvs/contrib/sccs2rcs.csh2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/cvs/contrib/sccs2rcs.csh b/contrib/cvs/contrib/sccs2rcs.csh
index a1dea01b19e7..310e2710f194 100644
--- a/contrib/cvs/contrib/sccs2rcs.csh
+++ b/contrib/cvs/contrib/sccs2rcs.csh
@@ -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"