From 918ea916be067209865d8fd86f5d240a1e56f4b7 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Sat, 6 Oct 2007 10:40:13 +0000 Subject: [PATCH] Fix Win32 drive display in bat version browser. Fixes bug #961. git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/branches/Branch-2.2@5732 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/src/qt-console/restore/restoretree.cpp | 2 +- bacula/technotes-2.1 | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/bacula/src/qt-console/restore/restoretree.cpp b/bacula/src/qt-console/restore/restoretree.cpp index 0bec98106e..e999274108 100644 --- a/bacula/src/qt-console/restore/restoretree.cpp +++ b/bacula/src/qt-console/restore/restoretree.cpp @@ -391,7 +391,7 @@ bool restoreTree::addDirectory(QString &m_cwd, QString &newdirr) if (!m_slashTrap) { /* add unix '/' directory first */ - if (m_dirPaths.empty() && isWin32Path(fullPath)) { + if (m_dirPaths.empty() && !isWin32Path(fullPath)) { m_slashTrap = true; QTreeWidgetItem *item = new QTreeWidgetItem(directoryTree); QString text("/"); diff --git a/bacula/technotes-2.1 b/bacula/technotes-2.1 index 81fc03299c..7c1459b337 100644 --- a/bacula/technotes-2.1 +++ b/bacula/technotes-2.1 @@ -1,7 +1,10 @@ Technical notes on version 2.2 General: +06Oct07 +kes Fix Win32 drive display in bat version browser. Fixes bug #961. 05Oct07 +kes Fix doc issue. This fixes bug #963. kes Fix listing performance problems in bat. Pointed out by Chris Howells. ebl Fix replace on restore. This fixes bug #969 -- 2.39.5