aboutsummaryrefslogtreecommitdiff
path: root/qlop.c
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2020-05-21 13:12:54 +0200
committerFabian Groffen <grobian@gentoo.org>2020-05-21 13:12:54 +0200
commit9935434aa78f4458f45fe2daf9292a3534cb370c (patch)
tree7a4b7a4aaf34e07b7d118a147db45807d3499cf9 /qlop.c
parentqmerge: calculate MD5/SHA1 hashes possibly in parallel (diff)
downloadportage-utils-9935434aa78f4458f45fe2daf9292a3534cb370c.tar.gz
portage-utils-9935434aa78f4458f45fe2daf9292a3534cb370c.tar.bz2
portage-utils-9935434aa78f4458f45fe2daf9292a3534cb370c.zip
qlop: fix inversed logic
introduced in 20844dc943700cca72bbb6896f42adcd30de41e3, the intention was to suppress the warning, not raise it. Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'qlop.c')
-rw-r--r--qlop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/qlop.c b/qlop.c
index d5ace83..5048b1e 100644
--- a/qlop.c
+++ b/qlop.c
@@ -1457,7 +1457,7 @@ int qlop_main(int argc, char **argv)
/* handle -l / -d conflict */
if (start_time != 0 && m.show_lastmerge) {
- if (m.show_emerge)
+ if (!m.show_emerge)
warn("-l and -d cannot be used together, dropping -l");
m.show_lastmerge = 0;
}