From: Alexander Larsson Date: Tue, 23 Jun 2009 13:07:00 +0000 (+0200) Subject: Copy namespaces correctly in g_file_copy_attributes X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=c1ab6454feb4447b8ef7ce6a0eb0fb38bae186df;p=dana%2Fcg-glib.git 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. --- diff --git a/gio/gfile.c b/gio/gfile.c index ccb0402d..49adf464 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, "::*"); } } }