diff --git a/smartmontools/CHANGELOG b/smartmontools/CHANGELOG index 8b50cdfefdc481dca9a06d2ad5328f9a9e239f2a..35bdb9393c1e7bf6a8592913a5b3f149689ef7e7 100644 --- a/smartmontools/CHANGELOG +++ b/smartmontools/CHANGELOG @@ -43,6 +43,9 @@ NOTES FOR FUTURE RELEASES: see TODO file. <DEVELOPERS: ADDITIONS TO THE CHANGE LOG GO JUST BELOW HERE, PLEASE> + [CF] smartctl: Fix option '-q, --quietmode' (ticket #11). + Regression was introduced with r2807. + [CF] drivedb.h update: - SAMSUNG SpinPoint F2 EG series diff --git a/smartmontools/NEWS b/smartmontools/NEWS index 9b04f65dc7c64b03315f939df0fb09ed2f0eb552..ea4601fa31abfe5e700d346b592778f2d24db6cb 100644 --- a/smartmontools/NEWS +++ b/smartmontools/NEWS @@ -12,6 +12,7 @@ Summary: smartmontools release 5.40 - configure: New default value for '--with-docdir'. - Drive database is in a separate source file 'drivedb.h' which can be downloaded from SVN. +- Fix regression in smartctl option '-q, --quietmode'. Date 2009-12-09 Summary: smartmontools release 5.39 (UNSTABLE/EXPERIMENTAL) diff --git a/smartmontools/smartctl.cpp b/smartmontools/smartctl.cpp index 93ba92894bcdb981938510528d4fb0674fcd7b46..ec701c2ed014338887be5af14e2d08706fcdada5 100644 --- a/smartmontools/smartctl.cpp +++ b/smartmontools/smartctl.cpp @@ -3,8 +3,8 @@ * * Home page of code is: http://smartmontools.sourceforge.net * - * Copyright (C) 2002-9 Bruce Allen <smartmontools-support@lists.sourceforge.net> - * Copyright (C) 2008-9 Christian Franke <smartmontools-support@lists.sourceforge.net> + * Copyright (C) 2002-10 Bruce Allen <smartmontools-support@lists.sourceforge.net> + * Copyright (C) 2008-10 Christian Franke <smartmontools-support@lists.sourceforge.net> * Copyright (C) 2000 Michael Cornwell <cornwell@acm.org> * * This program is free software; you can redistribute it and/or modify @@ -730,7 +730,7 @@ const char * parse_options(int argc, char** argv, // print output is switchable, then start with the print output // turned off if (con->printing_switchable) - con->dont_print = false; + con->dont_print = true; // error message if user has asked for more than one test if (testcnt > 1) {