diff options
author | Alexander Larsson <alexl@redhat.com> | 2007-10-22 15:02:05 +0000 |
---|---|---|
committer | Alexander Larsson <alexl@src.gnome.org> | 2007-10-22 15:02:05 +0000 |
commit | 7c2be725921030667db51449ee178b722aed518e (patch) | |
tree | d204de02d8ac38ff50ab3837efc8959b9b5b3ff4 /daemon | |
parent | dfd8e5728fa5680218c244ea5ba0eb6ce3c58e5d (diff) | |
download | gvfs-7c2be725921030667db51449ee178b722aed518e.tar.gz |
Update to use the gurifuncs.h from gio. Fix filename parsing to handle ~/x
2007-10-22 Alexander Larsson <alexl@redhat.com>
* client/gdaemonvfs.c:
* common/gvfsuriutils.[ch]:
* daemon/gvfsbackendtrash.c:
Update to use the gurifuncs.h from gio.
Fix filename parsing to handle ~/x
svn path=/trunk/; revision=988
Diffstat (limited to 'daemon')
-rw-r--r-- | daemon/gvfsbackendtrash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/gvfsbackendtrash.c b/daemon/gvfsbackendtrash.c index 3f5b4cb7..62867e9e 100644 --- a/daemon/gvfsbackendtrash.c +++ b/daemon/gvfsbackendtrash.c @@ -912,7 +912,7 @@ add_extra_trash_info (GFileInfo *file_info, orig_path_key = g_key_file_get_string (keyfile, "Trash Info", "Path", NULL); if (orig_path_key) { - orig_path_unescaped = g_uri_unescape_string (orig_path_key, NULL, ""); + orig_path_unescaped = g_uri_unescape_string (orig_path_key, ""); if (orig_path_unescaped) { |