[glib/glib-2-20] Copy namespaces correctly in g_file_copy_attributes
- From: Alexander Larsson <alexl src gnome org>
- To: svn-commits-list gnome org
- Subject: [glib/glib-2-20] Copy namespaces correctly in g_file_copy_attributes
- Date: Tue, 23 Jun 2009 11:46:44 -0400 (EDT)
commit d9b46acb72911e93c539355a3f612499b3de0652
Author: Alexander Larsson <alexl redhat com>
Date: Tue Jun 23 15:07:00 2009 +0200
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.
gio/gfile.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gio/gfile.c b/gio/gfile.c
index 5801900..36c66ec 100644
--- a/gio/gfile.c
+++ b/gio/gfile.c
@@ -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, "::*");
}
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]