[Pkg-owncloud-commits] [owncloud-client] 80/219: I forgot to rename one of the while list to the blacklist

Sandro Knauß hefee-guest at moszumanska.debian.org
Sat Oct 11 14:43:12 UTC 2014


This is an automated email from the git hooks/post-receive script.

hefee-guest pushed a commit to branch master
in repository owncloud-client.

commit 71408bab602010f55973b4b131969ce47f38ef59
Author: Olivier Goffart <ogoffart at woboq.com>
Date:   Wed Sep 3 16:11:05 2014 +0200

    I forgot to rename one of the while list to the blacklist
---
 src/mirall/syncengine.cpp | 2 +-
 src/mirall/syncengine.h   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/mirall/syncengine.cpp b/src/mirall/syncengine.cpp
index 05d2f6e..272de6e 100644
--- a/src/mirall/syncengine.cpp
+++ b/src/mirall/syncengine.cpp
@@ -586,7 +586,7 @@ void SyncEngine::startSync()
     qDebug() << "#### Discovery start #################################################### >>";
 
     DiscoveryJob *job = new DiscoveryJob(_csync_ctx);
-    job->_selectiveSyncBlackList = _selectiveSyncWhiteList;
+    job->_selectiveSyncBlackList = _selectiveSyncBlackList;
     job->moveToThread(&_thread);
     connect(job, SIGNAL(finished(int)), this, SLOT(slotDiscoveryJobFinished(int)));
     connect(job, SIGNAL(folderDiscovered(bool,QString)),
diff --git a/src/mirall/syncengine.h b/src/mirall/syncengine.h
index d1720c2..9806cc6 100644
--- a/src/mirall/syncengine.h
+++ b/src/mirall/syncengine.h
@@ -62,7 +62,7 @@ public:
     Utility::StopWatch &stopWatch() { return _stopWatch; }
 
     void setSelectiveSyncBlackList(const QStringList &list)
-    { _selectiveSyncWhiteList = list; }
+    { _selectiveSyncBlackList = list; }
 
 signals:
     void csyncError( const QString& );
@@ -159,7 +159,7 @@ private:
     // hash containing the permissions on the remote directory
     QHash<QString, QByteArray> _remotePerms;
 
-    QStringList _selectiveSyncWhiteList;
+    QStringList _selectiveSyncBlackList;
 };
 
 }

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud-client.git



More information about the Pkg-owncloud-commits mailing list