From 9f315994b5b6a4696a25c4836c47248508ab0d88 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Wed, 26 Sep 2007 08:43:32 +0000 Subject: [PATCH] Duh, wrong way around --- src/mountinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mountinfo.c b/src/mountinfo.c index 92f2275e..be31012a 100644 --- a/src/mountinfo.c +++ b/src/mountinfo.c @@ -364,7 +364,7 @@ int mountinfo (int argc, char **argv) continue; if (skip_point_regex && regexec (skip_point_regex, n, 0, NULL, 0) == 0) continue; - if (rc_env_bool ("RC_QUIET")) + if (! rc_env_bool ("RC_QUIET")) printf ("%s\n", n); result = EXIT_SUCCESS; }