mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-03 09:46:17 +01:00
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:
parent
e9b4f7a3bc
commit
c1ab6454fe
@ -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, "::*");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user