Changed FreeBSD mount command to mount_cd9660

This commit is contained in:
Thomas Schmitt 2009-10-11 14:17:09 +00:00
parent b3ea97f18c
commit 5405e08b5c
2 changed files with 8 additions and 3 deletions

View File

@ -12242,10 +12242,15 @@ too_long:;
"Command mdconfig -a -t vnode -f can create a device node which uses the file",
0, "HINT", 0);
return(0);
} else
} else {
sprintf(form,
"%smount -t cd9660 -o noexec,nosuid -s %%sbsector%% %%device%% %s",
"%smount_cd9660 -o noexec,nosuid -s %%sbsector%% %%device%% %s",
(flag & 1 ? "/sbin/" : ""), Text_shellsafe(cmd+8, sfe, 0));
/*
Not working on FreeBSD 7.2 according to Zsolt Kuti, 11 Oct 2009:
"%smount -t cd9660 -o noexec,nosuid -o -s %%sbsector%% %%device%% %s",
*/
}
is_safe= 1;
}
sprintf(session_text, "%d", session);

View File

@ -1 +1 @@
#define Xorriso_timestamP "2009.10.11.141528"
#define Xorriso_timestamP "2009.10.11.141815"