Handling -mount on Debian kfreebsd like on FreeBSD

This commit is contained in:
Thomas Schmitt 2009-12-30 16:35:12 +00:00
parent af39f58e71
commit 2b9b7974f0
2 changed files with 4 additions and 2 deletions

View File

@ -12248,7 +12248,9 @@ too_long:;
"-mount*: Cannot determine current system type",
0, "FAILURE", 0);
return(0);
} else if(strcmp(sysname, "FreeBSD") == 0) {
} else if(strcmp(sysname, "FreeBSD") == 0 ||
strcmp(sysname, "GNU/kFreeBSD") == 0) {
/* "GNU/kFreeBSD" = Debian kfreebsd */
sys_code= 2;
} else if(strcmp(sysname, "Linux") == 0) {
sys_code= 1;

View File

@ -1 +1 @@
#define Xorriso_timestamP "2009.12.27.095045"
#define Xorriso_timestamP "2009.12.30.163643"