[brasero/gnome-2-28] Fix a long standing mistake that could lead cdrdao to error out (backportable)
- From: Philippe Rouquier <philippr src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [brasero/gnome-2-28] Fix a long standing mistake that could lead cdrdao to error out (backportable)
- Date: Mon, 14 Dec 2009 16:56:44 +0000 (UTC)
commit 9e14da97a65018f3f2895daf2cffbb31f58c10d7
Author: Philippe Rouquier <bonfire-app wanadoo fr>
Date: Wed Nov 25 14:30:05 2009 +0100
Fix a long standing mistake that could lead cdrdao to error out (backportable)
plugins/cdrdao/burn-cdrdao.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/plugins/cdrdao/burn-cdrdao.c b/plugins/cdrdao/burn-cdrdao.c
index d050751..7acff07 100644
--- a/plugins/cdrdao/burn-cdrdao.c
+++ b/plugins/cdrdao/burn-cdrdao.c
@@ -189,8 +189,8 @@ brasero_cdrdao_read_stderr_record (BraseroCdrdao *cdrdao, const gchar *line)
if (!cuepath)
return FALSE;
- if (!strstr (line, cuepath)
- && !strstr (line, "ERROR: Could not find input file")) {
+ if (strstr (line, cuepath)
+ && strstr (line, "ERROR: Could not find input file")) {
g_free (cuepath);
return FALSE;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]