summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2009-06-23 15:07:00 +0200
committerAlexander Larsson <alexl@redhat.com>2009-06-23 17:44:09 +0200
commitd9b46acb72911e93c539355a3f612499b3de0652 (patch)
tree560a3ce5ddbfd3559da5e45f85136fc9d9bb355f
parent00547ece56ac781c2f0c438773627e175e89c65a (diff)
Copy namespaces correctly in g_file_copy_attributes
File attribute namespaces are delimited with "::", but build_attribute_list_for_copy only used ":", so we didn't copy any writable namespaces.
-rw-r--r--gio/gfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gio/gfile.c b/gio/gfile.c
index 58019005b..36c66ec04 100644
--- a/gio/gfile.c
+++ b/gio/gfile.c
@@ -2110,7 +2110,7 @@ build_attribute_list_for_copy (GFileAttributeInfoList *attributes,
g_string_append_c (s, ',');
g_string_append (s, namespaces->infos[i].name);
- g_string_append (s, ":*");
+ g_string_append (s, "::*");
}
}
}