diff options
author | bde <bde@FreeBSD.org> | 1997-02-11 16:55:33 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-02-11 16:55:33 +0000 |
commit | 050f50a43b17a07fbae1d35b8badebba27727898 (patch) | |
tree | e40b1289b820360a6079c19bf400183b84bb8a61 /sys/isofs/cd9660/cd9660_node.c | |
parent | 6ec93c786651832501c900cfd9f8f1bed11ac18c (diff) | |
download | FreeBSD-src-050f50a43b17a07fbae1d35b8badebba27727898.zip FreeBSD-src-050f50a43b17a07fbae1d35b8badebba27727898.tar.gz |
Restored one line of "High Sierra" changes from rev.1.8.
The Lite2 changes in cd9660 are scarey. I probably missed some
other lossage in this file.
Diffstat (limited to 'sys/isofs/cd9660/cd9660_node.c')
-rw-r--r-- | sys/isofs/cd9660/cd9660_node.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/isofs/cd9660/cd9660_node.c b/sys/isofs/cd9660/cd9660_node.c index c726696..ba89cdd 100644 --- a/sys/isofs/cd9660/cd9660_node.c +++ b/sys/isofs/cd9660/cd9660_node.c @@ -366,7 +366,8 @@ cd9660_deftstamp(isodir,inop,bp,ftype) if (bp) { ap = (struct iso_extended_attributes *)bp->b_data; - if (isonum_711(ap->version) == 1) { + if (ftype != ISO_FTYPE_HIGH_SIERRA + && isonum_711(ap->version) == 1) { if (!cd9660_tstamp_conv17(ap->ftime,&inop->inode.iso_atime)) cd9660_tstamp_conv17(ap->ctime,&inop->inode.iso_atime); if (!cd9660_tstamp_conv17(ap->ctime,&inop->inode.iso_ctime)) |