Update to use b_actf instead of av_forw(?) per Charles Hannum's changes.

This commit is contained in:
briggs 1994-02-08 03:54:08 +00:00
parent 7ce014f038
commit d220a8bafd
2 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@
*
* Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992
*
* $Id: cd.c,v 1.4 1994/02/03 05:34:47 briggs Exp $
* $Id: cd.c,v 1.5 1994/02/08 03:54:08 briggs Exp $
*/
#include <sys/types.h>
@ -417,7 +417,7 @@ cdstart(unit)
dp = &cd->buf_queue;
if ((bp = dp->b_actf) == NULL) /* yes, an assign */
return;
dp->b_actf = bp->av_forw;
dp->b_actf = bp->b_actf;
/*
* If the deivce has become invalid, abort all the

View File

@ -14,7 +14,7 @@
*
* Ported to run under 386BSD by Julian Elischer (julian@dialix.oz.au) Sept 1992
*
* $Id: sd.c,v 1.4 1994/02/03 05:34:44 briggs Exp $
* $Id: sd.c,v 1.5 1994/02/08 03:54:11 briggs Exp $
*/
#include <sys/types.h>
@ -439,7 +439,7 @@ sdstart(unit)
dp = &sd->buf_queue;
if ((bp = dp->b_actf) == NULL) /* yes, an assign */
return;
dp->b_actf = bp->av_forw;
dp->b_actf = bp->b_actf;
/*
* If the device has become invalid, abort all the