diff options
author | msmith <msmith@FreeBSD.org> | 2001-07-26 02:20:47 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 2001-07-26 02:20:47 +0000 |
commit | caf5c05b79711b1b2d2f2cae3b997a9e2b7dad5b (patch) | |
tree | 1284f9f847a86829f73c01d3faba7bc669c2ab03 | |
parent | 533d27a1b748fb16d0184b3f84e4c455e5c0eca0 (diff) | |
download | FreeBSD-src-caf5c05b79711b1b2d2f2cae3b997a9e2b7dad5b.zip FreeBSD-src-caf5c05b79711b1b2d2f2cae3b997a9e2b7dad5b.tar.gz |
Fix typo (* -> &)
Submitted by: Andrew Doran <ad@netbsd.org>
-rw-r--r-- | sys/dev/mly/mly.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/mly/mly.c b/sys/dev/mly/mly.c index 4381f68..78e41e3 100644 --- a/sys/dev/mly/mly.c +++ b/sys/dev/mly/mly.c @@ -2243,7 +2243,7 @@ mly_cam_action_io(struct cam_sim *sim, struct ccb_scsiio *csio) /* build the packet for the controller */ ss = &mc->mc_packet->scsi_small; ss->opcode = MDACMD_SCSI; - if (csio->ccb_h.flags * CAM_DIS_DISCONNECT) + if (csio->ccb_h.flags & CAM_DIS_DISCONNECT) ss->command_control.disable_disconnect = 1; if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_OUT) ss->command_control.data_direction = MLY_CCB_WRITE; |