mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-24 03:02:10 +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
00547ece56
commit
d9b46acb72
@ -2110,7 +2110,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…
x
Reference in New Issue
Block a user