diff options
| author | Matthew Dillon <dillon@FreeBSD.org> | 1999-01-27 23:49:45 +0000 |
|---|---|---|
| committer | Matthew Dillon <dillon@FreeBSD.org> | 1999-01-27 23:49:45 +0000 |
| commit | 7191deb01ed2d308d347683ba7c8e5ea66bab570 (patch) | |
| tree | 157b7280613cd2fcac19981cceac81512dadfb60 | |
| parent | fe08c21a537b9aa0d92a39d91860d097ec26f6b4 (diff) | |
Notes
| -rw-r--r-- | sys/miscfs/devfs/devfs_vnops.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/miscfs/devfs/devfs_vnops.c b/sys/miscfs/devfs/devfs_vnops.c index 2f7c4ed72eb1..ca25440e3461 100644 --- a/sys/miscfs/devfs/devfs_vnops.c +++ b/sys/miscfs/devfs/devfs_vnops.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: devfs_vnops.c,v 1.66 1999/01/21 08:29:06 dillon Exp $ + * $Id: devfs_vnops.c,v 1.67 1999/01/27 22:42:05 dillon Exp $ */ @@ -1720,8 +1720,10 @@ devfs_strategy(struct vop_strategy_args *ap) switch (ap->a_vp->v_type) { case VCHR: (*dnp->by.Cdev.cdevsw->d_strategy)(bp); + break; case VBLK: (*dnp->by.Bdev.bdevsw->d_strategy)(bp); + break; } return (0); } |
