mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-01 00:18:15 +01:00
From: Tom Pavel <PAVEL@SLAC.Stanford.EDU>
Subject: man returns 1 In 1.1.5.1, man returns a status of 1 if the lookup succeeds and 0 if it fails. Here is a patch for what I believe is a simple oversight: Submitted by: jkh
This commit is contained in:
parent
e0c0215442
commit
bd240d5233
@ -187,7 +187,8 @@ main (argc, argv)
|
||||
gripe_not_found (nextarg, section);
|
||||
}
|
||||
}
|
||||
return status;
|
||||
return (status==0); /* status==1 --> exit(0),
|
||||
status==0 --> exit(1) */
|
||||
}
|
||||
|
||||
void
|
||||
|
Loading…
Reference in New Issue
Block a user