mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix a longstanding buglet in bz-prefixed grep(1).
This commit is contained in:
parent
64a266f9e8
commit
354cdde5b9
1 changed files with 5 additions and 5 deletions
|
|
@ -1359,16 +1359,16 @@ main (int argc, char **argv)
|
|||
if (program_name && strrchr (program_name, '/'))
|
||||
program_name = strrchr (program_name, '/') + 1;
|
||||
|
||||
if (strlen (program_name) > 1 && program_name[0] == 'b' && program_name[1] == 'z') {
|
||||
BZflag = 1;
|
||||
program_name += 2;
|
||||
}
|
||||
#if HAVE_LIBZ > 0
|
||||
if (program_name[0] == 'z') {
|
||||
else if (strlen (program_name) > 0 && program_name[0] == 'z') {
|
||||
Zflag = 1;
|
||||
++program_name;
|
||||
}
|
||||
#endif
|
||||
if (program_name[0] == 'b') {
|
||||
BZflag = 1;
|
||||
++program_name;
|
||||
}
|
||||
|
||||
#if defined(__MSDOS__) || defined(_WIN32)
|
||||
/* DOS and MS-Windows use backslashes as directory separators, and usually
|
||||
|
|
|
|||
Loading…
Reference in a new issue