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.
This commit is contained in:
Alexander Larsson 2009-06-23 15:07:00 +02:00
parent 00547ece56
commit d9b46acb72

View File

@ -2110,7 +2110,7 @@ build_attribute_list_for_copy (GFileAttributeInfoList *attributes,
g_string_append_c (s, ','); g_string_append_c (s, ',');
g_string_append (s, namespaces->infos[i].name); g_string_append (s, namespaces->infos[i].name);
g_string_append (s, ":*"); g_string_append (s, "::*");
} }
} }
} }