summaryrefslogtreecommitdiff
path: root/bin/dconf-update.vala
diff options
context:
space:
mode:
Diffstat (limited to 'bin/dconf-update.vala')
-rw-r--r--bin/dconf-update.vala6
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/dconf-update.vala b/bin/dconf-update.vala
index 28a1713..1517e78 100644
--- a/bin/dconf-update.vala
+++ b/bin/dconf-update.vala
@@ -136,8 +136,10 @@ Gvdb.HashTable read_directory (string dirname) {
var path = "/" + group + "/" + key;
if (table.lookup (path) != null) {
- stderr.printf ("%s: [%s]: %s: ignoring duplicate definition of key %s\n",
- filename, group, key, path);
+ /* We process the files in reverse alphabetical order. If the key is already set then
+ * it must have been set from a file with higher precedence so we should ignore this
+ * one.
+ */
continue;
}