From 3ea67e86a4d8185324752faffa999bd56d2fb281 Mon Sep 17 00:00:00 2001 From: Vreixo Formoso Lopes Date: Wed, 3 Oct 2007 11:30:10 +0000 Subject: [PATCH] Set the flush-bit in activate session. --- src/isofs_wrap.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/isofs_wrap.c b/src/isofs_wrap.c index 51bb89f4..c3bc5573 100644 --- a/src/isofs_wrap.c +++ b/src/isofs_wrap.c @@ -161,7 +161,8 @@ int isoburn_activate_session(struct burn_drive *drive) if (o->fabricated_disc_status != BURN_DISC_APPENDABLE) return 1; - ret = burn_random_access_write(drive, 0, (char*)o->target_iso_head, 64*2048, 0); + ret = burn_random_access_write(drive, 0, (char*)o->target_iso_head, + 64*2048, 1); return ret; }