mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-07 06:56:56 +01:00
Straighten out a compound if() to improve readability marginally.
This commit is contained in:
parent
4d99ef8d55
commit
5cb6703e29
@ -115,7 +115,10 @@ checkfstab(int flags, int (*docheck)(struct fstab *),
|
||||
if (fs->fs_passno > passno && fs->fs_passno < nextpass)
|
||||
nextpass = fs->fs_passno;
|
||||
|
||||
if (passno != fs->fs_passno || (*docheck)(fs) == 0)
|
||||
if (passno != fs->fs_passno)
|
||||
continue;
|
||||
|
||||
if ((*docheck)(fs) == 0)
|
||||
continue;
|
||||
|
||||
if (flags & CHECK_DEBUG)
|
||||
|
Loading…
Reference in New Issue
Block a user