diff --git a/sm5/TODO b/sm5/TODO index df4041644ec8ca47bfdc136898c10ccf805a7a01..0aa5cddb6d7a7fddc0d7456a63af660a16c1919d 100644 --- a/sm5/TODO +++ b/sm5/TODO @@ -4,7 +4,7 @@ Home page of code is: http://smartmontools.sourceforge.net Copyright (C) 2002 Bruce Allen <smartmontools-support@lists.sourceforge.net> -$Id: TODO,v 1.27 2002/12/07 06:23:54 ballen4705 Exp $ +$Id: TODO,v 1.28 2002/12/11 15:41:36 ballen4705 Exp $ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -39,6 +39,16 @@ least provide a command line option that enables attributes 194, 231 or 9 to be interpreted as Temperature_Celsius. http://coredump.free.fr/linux/hddtemp.db +Replace code like this: + if (errno<sys_nerr) + errormessage=sys_errlist[errno]; + else + errormessage="unrecognized system error"; +with + errormessage=strerror(errno); + + + smartctl: --------- Handle extended error and self-test logs gracefully. Can someone tell