From c1ab6454feb4447b8ef7ce6a0eb0fb38bae186df Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Tue, 23 Jun 2009 15:07:00 +0200 Subject: [PATCH] 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. --- gio/gfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/gfile.c b/gio/gfile.c index ccb0402..49adf46 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, "::*"); } } } -- 2.7.4