Correct the check for whether SMART is enabled.

This commit is contained in:
mycroft 2002-08-15 18:57:51 +00:00
parent 00a0212e10
commit b916651e58
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: atactl.c,v 1.17 2002/08/06 01:16:56 soren Exp $ */
/* $NetBSD: atactl.c,v 1.18 2002/08/15 18:57:51 mycroft Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -389,7 +389,7 @@ is_smart(int silent)
status = "status unknown";
retval = 2;
} else {
if (inqbuf->atap_cmd_set2 & ATA_CMD2_SMART) {
if (inqbuf->atap_cmd1_en & WDC_CMD1_SMART) {
status = "enabled";
retval = 1;
} else {