mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Fix mkinitrd(8) default rule boolean parsing.
This commit is contained in:
parent
6138e94124
commit
4ad93ec618
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ bool InclusionRules::AddRulesFromFile(FILE* fp, FILE* err, const char* fpname)
|
|||
bool value;
|
||||
if ( !strcmp(parameter, "true") )
|
||||
value = true;
|
||||
else if ( !strcmp(parameter, "true") )
|
||||
else if ( !strcmp(parameter, "false") )
|
||||
value = false;
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue