From 73bb876327f525da82bfb54ca34c11225d187928 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Tue, 4 Mar 2014 16:41:19 +0000 Subject: [PATCH] Last minute regression fix: -list_speeds on non-BD drives used CD speed factor --- xorriso/drive_mgt.c | 2 +- xorriso/xorriso_timestamp.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xorriso/drive_mgt.c b/xorriso/drive_mgt.c index 62911e28..dbcdf818 100644 --- a/xorriso/drive_mgt.c +++ b/xorriso/drive_mgt.c @@ -1595,7 +1595,7 @@ int Xorriso_choose_speed_factor(struct XorrisO *xorriso, *speed_unit= "B"; } } else if((profile > 0x00 && profile <= 0x0a) || - (((no_dvd_write || no_bd_write) && (flag & 1)))) { + (((no_dvd_write && no_bd_write) && (flag & 1)))) { *speed_unit= "C"; } else if((profile >= 0x40 && profile <= 0x43) && !(no_bd_write && (flag & 1))) { diff --git a/xorriso/xorriso_timestamp.h b/xorriso/xorriso_timestamp.h index 15ed35f6..9d462448 100644 --- a/xorriso/xorriso_timestamp.h +++ b/xorriso/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2014.03.03.202815" +#define Xorriso_timestamP "2014.03.04.164038"