diff options
author | dillon <dillon@FreeBSD.org> | 2001-11-04 23:52:49 +0000 |
---|---|---|
committer | dillon <dillon@FreeBSD.org> | 2001-11-04 23:52:49 +0000 |
commit | 78148daf77ec52f0f3b94a1b12eb55fdbf7a7b50 (patch) | |
tree | c2b453256cb6a09e5d601923e7c945102685a743 /sys/isofs/cd9660 | |
parent | f5f460fb537ed9f586474b7728790cbe0a9e91c4 (diff) | |
download | FreeBSD-src-78148daf77ec52f0f3b94a1b12eb55fdbf7a7b50.zip FreeBSD-src-78148daf77ec52f0f3b94a1b12eb55fdbf7a7b50.tar.gz |
Fix the fix. BIO_ERROR must be set in b_ioflags, not b_flags
Diffstat (limited to 'sys/isofs/cd9660')
-rw-r--r-- | sys/isofs/cd9660/cd9660_lookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/isofs/cd9660/cd9660_lookup.c b/sys/isofs/cd9660/cd9660_lookup.c index 69a76d9..706a7ae 100644 --- a/sys/isofs/cd9660/cd9660_lookup.c +++ b/sys/isofs/cd9660/cd9660_lookup.c @@ -436,7 +436,7 @@ cd9660_blkatoff(vp, offset, res, bpp) &bp->b_blkno, NULL, NULL); if (error) { bp->b_error = error; - bp->b_flags |= BIO_ERROR; + bp->b_ioflags |= BIO_ERROR; brelse(bp); *bpp = NULL; return (error); |