From: Adheer Chandravanshi Date: Tue, 17 Sep 2013 11:54:44 +0000 (-0400) Subject: [SCSI] qla4xxx: Correct the check for local CHAP entry type X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=33519aecafc01a48fef6735d55f9879d3c4070cd;p=deliverable%2Flinux.git [SCSI] qla4xxx: Correct the check for local CHAP entry type Signed-off-by: Adheer Chandravanshi Signed-off-by: Vikas Chaudhary Signed-off-by: James Bottomley --- diff --git a/drivers/scsi/qla4xxx/ql4_mbx.c b/drivers/scsi/qla4xxx/ql4_mbx.c index 62d4208af21f..5eef7d1aaa86 100644 --- a/drivers/scsi/qla4xxx/ql4_mbx.c +++ b/drivers/scsi/qla4xxx/ql4_mbx.c @@ -1611,7 +1611,7 @@ int qla4xxx_get_uni_chap_at_index(struct scsi_qla_host *ha, char *username, goto exit_unlock_uni_chap; } - if (!(chap_table->flags & BIT_6)) { + if (!(chap_table->flags & BIT_7)) { ql4_printk(KERN_ERR, ha, "Unidirectional entry not set\n"); rval = QLA_ERROR; goto exit_unlock_uni_chap;