From 9123cfd14d6cd783f7d6fbb68f332230c5a05021 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Thu, 29 Nov 2007 18:55:52 +0000 Subject: [PATCH] Adjusted meaning of --read_and_print count= -1 --- libburn/trunk/test/telltoc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libburn/trunk/test/telltoc.c b/libburn/trunk/test/telltoc.c index c655c02f..63f40894 100644 --- a/libburn/trunk/test/telltoc.c +++ b/libburn/trunk/test/telltoc.c @@ -606,7 +606,8 @@ int telltoc_read_and_print(struct burn_drive *drive, if (start_sector == -1) start_sector = last_track_start; if (sector_count == -1) { - sector_count = last_track_size; + sector_count = last_track_start + last_track_size + - start_sector; if (media_is_cd_profile) /* In case it is a TAO track */ final_cd_try = 0; /* allow it (-1 is denial) */ }