diff --git a/sm5/smartd.8 b/sm5/smartd.8 index dc4610d1414c59f716e8c52b1ab970750a9827ee..c8747ab21f8c1434e2439371e8bcf6615a24729f 100644 --- a/sm5/smartd.8 +++ b/sm5/smartd.8 @@ -13,7 +13,7 @@ \# at the Concurrent Systems Laboratory (now part of the Storage Systems \# Research Center), Jack Baskin School of Engineering, University of \# California, Santa Cruz. http://ssrc.soe.ucsc.edu/ -.TH SMARTD 8 "$Date: 2002/10/24 10:53:50 $" "smartmontools-5.0" +.TH SMARTD 8 "$Date: 2002/10/24 10:56:10 $" "smartmontools-5.0" .SH NAME smartd \- S.M.A.R.T. Daemon .SH SYNOPSIS @@ -119,7 +119,7 @@ manual page for further explanation. .B smartd will also make log entries if a SMART attribute has failed, for example: .nf -.B 'Device: /dev/hdc, Failed SMART attribute: 5 Reallocated_Sector_Ct. Use smartctl -v /dev/hdc.' +.B 'Device: /dev/hdc, Failed SMART attribute: 5 Reallocated_Sector_Ct. Use smartctl -a /dev/hdc.' .fi Such entries should not be ignored - they mean that the disk is failing. Use the .B smartctl @@ -198,4 +198,4 @@ Please let us know if there is an on\-line source for this document. .SH CVS ID OF THIS PAGE: -$Id: smartd.8,v 1.9 2002/10/24 10:53:50 ballen4705 Exp $ +$Id: smartd.8,v 1.10 2002/10/24 10:56:10 ballen4705 Exp $ diff --git a/sm5/smartd.c b/sm5/smartd.c index b7d7825f8bba27571a62def26bf003ad14fe27a1..72772f34c1875075175f4a5f9bb610cc7adc1ef9 100644 --- a/sm5/smartd.c +++ b/sm5/smartd.c @@ -37,7 +37,7 @@ #include "ataprint.h" extern const char *CVSid1, *CVSid2; -const char *CVSid3="$Id: smartd.c,v 1.23 2002/10/24 10:53:50 ballen4705 Exp $" +const char *CVSid3="$Id: smartd.c,v 1.24 2002/10/24 10:56:10 ballen4705 Exp $" CVSID1 CVSID4 CVSID7; int daemon_init(void){ @@ -250,7 +250,7 @@ int ataCheckDevice( atadevices_t *drive){ loc=attributename; while (*loc && *loc==' ') loc++; - printout(LOG_CRIT,"Device: %s, Failed SMART attribute: %s. Use smartctl -v %s.\n", + printout(LOG_CRIT,"Device: %s, Failed SMART attribute: %s. Use smartctl -a %s.\n", drive->devicename,loc,drive->devicename); } diff --git a/sm5/smartd.cpp b/sm5/smartd.cpp index 639a751fe2fd72f378c3fb1d51cb667b9fae92de..5c45d75519bb39cf9dfe858bcf099f5bce611ade 100644 --- a/sm5/smartd.cpp +++ b/sm5/smartd.cpp @@ -37,7 +37,7 @@ #include "ataprint.h" extern const char *CVSid1, *CVSid2; -const char *CVSid3="$Id: smartd.cpp,v 1.23 2002/10/24 10:53:50 ballen4705 Exp $" +const char *CVSid3="$Id: smartd.cpp,v 1.24 2002/10/24 10:56:10 ballen4705 Exp $" CVSID1 CVSID4 CVSID7; int daemon_init(void){ @@ -250,7 +250,7 @@ int ataCheckDevice( atadevices_t *drive){ loc=attributename; while (*loc && *loc==' ') loc++; - printout(LOG_CRIT,"Device: %s, Failed SMART attribute: %s. Use smartctl -v %s.\n", + printout(LOG_CRIT,"Device: %s, Failed SMART attribute: %s. Use smartctl -a %s.\n", drive->devicename,loc,drive->devicename); }