diff options
author | peter <peter@FreeBSD.org> | 2001-08-10 11:14:53 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-08-10 11:14:53 +0000 |
commit | 42325ad8542d881532e88cc40f8c41c328979de3 (patch) | |
tree | 19cf02f471d5419c11bd48a53f04d655482bc316 /contrib | |
parent | b52f372000a9c4e1ffc06ba5dfa19e258d2ee9fd (diff) | |
download | FreeBSD-src-42325ad8542d881532e88cc40f8c41c328979de3.zip FreeBSD-src-42325ad8542d881532e88cc40f8c41c328979de3.tar.gz |
Argh, this could not possibly have worked as it existed in the tree.
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/cvs/contrib/sccs2rcs.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/cvs/contrib/sccs2rcs.in b/contrib/cvs/contrib/sccs2rcs.in index c2d12e1..199a5a0 100755 --- a/contrib/cvs/contrib/sccs2rcs.in +++ b/contrib/cvs/contrib/sccs2rcs.in @@ -178,12 +178,12 @@ 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 year = `echo $date | cut -c3-4` if ($year < 70) then # Y2K Bug, change century to 20 set date = `echo $date | sed -e s/19/20/` endif - set date = `sccs prs -r$rev $file | grep "^D " | awk '{printf("19%s %s", $3, $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" |