From ce81b0893ee0de126af3c2293647a27ffbcb4dc4 Mon Sep 17 00:00:00 2001 From: "Justin T. Gibbs" Date: Sat, 24 Feb 2001 19:24:36 +0000 Subject: [PATCH] In the SCSI_NO_SENSE_STRINGS case, properly fill the table with the asc and ascq pair rather than asc, asc. PR: 25291 Submitted by: Stephen Ferrari --- sys/cam/scsi/scsi_all.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/cam/scsi/scsi_all.c b/sys/cam/scsi/scsi_all.c index a80c05848b2..cd74165b05e 100644 --- a/sys/cam/scsi/scsi_all.c +++ b/sys/cam/scsi/scsi_all.c @@ -707,7 +707,7 @@ scsi_op_desc(u_int16_t opcode, struct scsi_inquiry_data *inq_data) asc, ascq, action, desc #else #define SST(asc, ascq, action, desc) \ - asc, asc, action + asc, ascq, action #endif static const char quantum[] = "QUANTUM";