New find action -hide, new find test -hidden
This commit is contained in:
@ -1179,3 +1179,17 @@ int Xorriso__bourne_to_reg(char bourne_expr[], char reg_expr[], int flag)
|
||||
|
||||
#endif /* ! Xorriso_fileliste_externaL */
|
||||
|
||||
|
||||
int Xorriso__hide_mode(char *mode, int flag)
|
||||
{
|
||||
if(strcmp(mode, "on") == 0)
|
||||
return(1 | 2);
|
||||
else if(strcmp(mode, "iso_rr") == 0)
|
||||
return(1);
|
||||
else if(strcmp(mode, "joliet") == 0)
|
||||
return(2);
|
||||
else if(strcmp(mode, "off") == 0)
|
||||
return(0);
|
||||
return(-1);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user