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 e9b4f7a3bc
commit c1ab6454fe

View File

@ -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, "::*");
}
}
}