~ubuntu-branches/ubuntu/jaunty/gvfs/jaunty-updates

« back to all changes in this revision

Viewing changes to daemon/gvfsjobunmount.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-03-10 13:02:47 UTC
  • mfrom: (1.1.38 upstream)
  • Revision ID: james.westby@ubuntu.com-20090310130247-eal98y6fbs81pkpg
Tags: 1.1.8-0ubuntu1
* New upstream version:
  - Fix crashers and leaks (lp: #201519)
  - Handle file:// uris with anchors in gvfs-open
  - fuse: Support ftruncate to the current file size (lp: #234532)
  - escape/unescape hostname part in uris, allowing spaces in e.g. smb domains
  - hal: Fix "No mount object" error on mount
  - Change details of the new .xdg-volume-info file format
  - Fix races in cancellation of gvfs streams
  - Remove debug spew from backends
  - ftp: Fix anonymous login (lp: #334540)
  - gphoto2: Ignore broken storages with no capacity (lp: #326029)
  - Don't globally modify COMP_WORDBREAKS in bash completion script
    (lp: #290784)
  - Don't ask for username when getting ssh key passphrase
* debian/patches/91_upstream_change_fix_trash_crasher.patch:
  - the change is in the new version

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
{
79
79
  GVfsJobUnmount *job;
80
80
 
81
 
  g_print ("g_vfs_job_unmount_new request: %p\n", message);
 
81
  g_debug ("g_vfs_job_unmount_new request: %p\n", message);
82
82
  
83
83
  job = g_object_new (G_VFS_TYPE_JOB_UNMOUNT,
84
84
                      "message", message,
130
130
  GVfsBackend *backend;
131
131
  GVfsJobUnmount *op_job = G_VFS_JOB_UNMOUNT (user_data);
132
132
 
133
 
  g_print ("unregister_mount_callback, unmount_reply: %p, error: %p\n", unmount_reply, error);
 
133
  g_debug ("unregister_mount_callback, unmount_reply: %p, error: %p\n", unmount_reply, error);
134
134
 
135
135
  backend = op_job->backend;
136
136
  (*G_VFS_JOB_CLASS (g_vfs_job_unmount_parent_class)->send_reply) (G_VFS_JOB (op_job));
145
145
{
146
146
  GVfsJobUnmount *op_job = G_VFS_JOB_UNMOUNT (job);
147
147
 
148
 
  g_print ("send_reply, failed: %d\n", job->failed);
 
148
  g_debug ("send_reply, failed: %d\n", job->failed);
149
149
 
150
150
  if (job->failed)
151
151
    (*G_VFS_JOB_CLASS (g_vfs_job_unmount_parent_class)->send_reply) (G_VFS_JOB (op_job));