diff options
author | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 2001-03-25 06:19:39 +0000 |
---|---|---|
committer | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 2001-03-25 06:19:39 +0000 |
commit | b9310a8a6fcd67b7146f40ccc56b0abb03c85ea8 (patch) | |
tree | 3634e6e9cac225636e1aa6b0168b467985a6c615 /sys | |
parent | a233d56cf8cc50938b61e6684650f0e8b4c8f29f (diff) |
Missing splx
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/ic/dpt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ic/dpt.c b/sys/dev/ic/dpt.c index 6b11da58777..4f6eb19f3a7 100644 --- a/sys/dev/ic/dpt.c +++ b/sys/dev/ic/dpt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dpt.c,v 1.1 1999/11/30 07:55:56 cmetz Exp $ */ +/* $OpenBSD: dpt.c,v 1.2 2001/03/25 06:19:38 csapuntz Exp $ */ /* $NetBSD: dpt.c,v 1.12 1999/10/23 16:26:33 ad Exp $ */ /*- @@ -1027,6 +1027,7 @@ dpt_scsi_cmd(xs) #ifdef __OpenBSD__ if ((xs->flags & SCSI_RESET) != 0) { #endif /* __OpenBSD__ */ + splx(s); xs->error = XS_DRIVER_STUFFUP; return (COMPLETE); } |