Added the source code of Xorriso_option_joliet_map which was omitted with commit 2fbb3cf
This commit is contained in:
parent
2fbb3cfac1
commit
e97cd48ee0
@ -103,6 +103,22 @@ int Xorriso_option_joliet(struct XorrisO *xorriso, char *mode, int flag)
|
||||
}
|
||||
|
||||
|
||||
/* Command -joliet_map */
|
||||
int Xorriso_option_joliet_map(struct XorrisO *xorriso, char *mode, int flag)
|
||||
{
|
||||
if(strcmp(mode, "unmapped") == 0) {
|
||||
xorriso->joliet_map= 0;
|
||||
} else if(strcmp(mode, "stripped") == 0) {
|
||||
xorriso->joliet_map= 1;
|
||||
} else {
|
||||
sprintf(xorriso->info_text, "-joliet_map: unknown mode '%s'", mode);
|
||||
Xorriso_msgs_submit(xorriso, 0, xorriso->info_text, 0, "SORRY", 0);
|
||||
return(0);
|
||||
}
|
||||
return(1);
|
||||
}
|
||||
|
||||
|
||||
/* Command -launch_frontend */
|
||||
int Xorriso_option_launch_frontend(struct XorrisO *xorriso,
|
||||
int argc, char **argv, int *idx, int flag)
|
||||
|
@ -1 +1 @@
|
||||
#define Xorriso_timestamP "2020.11.22.135052"
|
||||
#define Xorriso_timestamP "2020.12.04.103410"
|
||||
|
Loading…
x
Reference in New Issue
Block a user