SUSv3 -q compatibily exit status correction for grep

This commit is contained in:
"Vladimir N. Oleynik" 2005-09-23 13:44:03 +00:00
parent cf40d8175b
commit c96b703ab0

View File

@ -398,7 +398,7 @@ extern int grep_main(int argc, char **argv)
}
#endif
if(error_open_count)
return 2;
if(be_quiet)
return error_open_count ? 2 : 0;
return !matched; /* invert return value 0 = success, 1 = failed */
}