From: David Kalnischkies Date: Thu, 19 Nov 2009 22:55:33 +0000 (+0100) Subject: fix argument check for the rred method X-Git-Tag: 0.8.0~39^2~61^2~1 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/cc0f9c8e1044335f167b6b87d71dc91dd2f3501b?hp=--cc fix argument check for the rred method --- cc0f9c8e1044335f167b6b87d71dc91dd2f3501b diff --git a/methods/rred.cc b/methods/rred.cc index 7236efd03..c2d8eb5cf 100644 --- a/methods/rred.cc +++ b/methods/rred.cc @@ -530,7 +530,7 @@ public: * and will write the result to "Testfile.result". */ int main(int argc, char *argv[]) { - if (argc == 0) { + if (argc <= 1) { RredMethod Mth; return Mth.Run(); } else {