summaryrefslogtreecommitdiff
path: root/gio/gfile.c
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 16:35:41 +0200
commitc1ab6454feb4447b8ef7ce6a0eb0fb38bae186df (patch)
tree63780351c6e7497267b495504d2e6a961fd015e1 /gio/gfile.c
parente9b4f7a3bcfefc266fc575e401f07a2a4c2ce8f6 (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.
Diffstat (limited to 'gio/gfile.c')
-rw-r--r--gio/gfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gio/gfile.c b/gio/gfile.c
index ccb0402db..49adf4645 100644
--- a/gio/gfile.c
+++ b/gio/gfile.c
@@ -2544,7 +2544,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, "::*");
}
}
}