From 18f72b513548347d80ab63c11956b32ef5e27774 Mon Sep 17 00:00:00 2001 From: Ron Pedde Date: Wed, 7 Jun 2006 05:43:59 +0000 Subject: [PATCH] Fix cwd problem causing logfile page not to load. --- win32/FireflyShell/FireflyShell.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/FireflyShell/FireflyShell.cpp b/win32/FireflyShell/FireflyShell.cpp index d11cc2ef..1d8a82b5 100644 --- a/win32/FireflyShell/FireflyShell.cpp +++ b/win32/FireflyShell/FireflyShell.cpp @@ -32,7 +32,7 @@ Application::Application() : m_dlg(NULL), m_server_events(&m_icon) { CDosPath path = CDosPath::AppPath(); - SetCurrentDirectory(path.GetPath()); + SetCurrentDirectory(path.GetPathOnly()); CDosPath filename(_T("mt-daapd.conf")); filename |= path; m_config_path = filename.GetPath();