From: Arch Librarian Date: Mon, 20 Sep 2004 17:04:09 +0000 (+0000) Subject: isatty test was backwards X-Git-Tag: 0.7.24ubuntu1~593 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/00581c6b786743463040ec721f9c95febbcdfdf4 isatty test was backwards Author: mdz Date: 2003-12-20 23:39:54 GMT isatty test was backwards --- diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 2c7c99092..315352cbf 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: apt-get.cc,v 1.146 2003/11/19 23:50:51 mdz Exp $ +// $Id: apt-get.cc,v 1.147 2003/12/20 23:39:54 mdz Exp $ /* ###################################################################### apt-get - Cover for dpkg @@ -2468,7 +2468,7 @@ int main(int argc,const char *argv[]) } // Deal with stdout not being a tty - if (isatty(STDOUT_FILENO) && _config->FindI("quiet",0) < 1) + if (!isatty(STDOUT_FILENO) && _config->FindI("quiet",0) < 1) _config->Set("quiet","1"); // Setup the output streams