aboutsummaryrefslogtreecommitdiff
path: root/findutils
diff options
context:
space:
mode:
author"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-09-23 13:50:24 +0000
committer"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-09-23 13:50:24 +0000
commitbf4497406f4eb67e57e3bfaa3ef98c8811104847 (patch)
treeb1fcc3c0b8f6cf8adf8a82787a29c781e1c79973 /findutils
parentc96b703ab08bfa61be4b8a1c034405576ead53ac (diff)
downloadbusybox-bf4497406f4eb67e57e3bfaa3ef98c8811104847.tar.gz
SUSv3 -q compatibily exit status correction for grep again
Diffstat (limited to 'findutils')
-rw-r--r--findutils/grep.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/findutils/grep.c b/findutils/grep.c
index 986804553..e41f1a3be 100644
--- a/findutils/grep.c
+++ b/findutils/grep.c
@@ -398,7 +398,9 @@ extern int grep_main(int argc, char **argv)
}
#endif
- if(be_quiet)
- return error_open_count ? 2 : 0;
+ if(be_quiet && matched)
+ return 0;
+ if(error_open_count)
+ return 2;
return !matched; /* invert return value 0 = success, 1 = failed */
}