From fc6cd2e209c8ee809125420bddd88070b9ae0cc5 Mon Sep 17 00:00:00 2001 From: Sanjeev BA Date: Tue, 25 Nov 2014 12:02:13 +0900 Subject: [PATCH] Fix the pattern to be matched for setting current_dir. Resolves edi crash on build errors. Signed-off-by: Sanjeev BA --- src/bin/edi_consolepanel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/edi_consolepanel.c b/src/bin/edi_consolepanel.c index f2859dd..076f697 100644 --- a/src/bin/edi_consolepanel.c +++ b/src/bin/edi_consolepanel.c @@ -66,7 +66,7 @@ static void _edi_consolepanel_parse_directory(const char *line) { const char *pos; - pos = strstr(line, "Entering directory '"); + pos = strstr(line, "Entering directory `"); if (pos) { if (_current_dir)