[brasero] Fix a long standing mistake that could lead cdrdao to error out (backportable)



commit bdfa0622404c478b6967b58bb63c4b4af1b1fc1a
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 ebc742e..cad47ee 100644
--- a/plugins/cdrdao/burn-cdrdao.c
+++ b/plugins/cdrdao/burn-cdrdao.c
@@ -197,8 +197,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]