summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@redhat.com>2012-07-27 16:57:39 +0200
committerTomas Bzatek <tbzatek@redhat.com>2012-07-31 11:59:38 +0200
commitc0dd33f20d70c1c1dcb729bfef9a9541d5fc4cdf (patch)
treef0ca08f03ac63fc214d10cb63b3f68fab0e98858
parent59cda52b8d5e067c4fbdab1943fc90859ed0b97f (diff)
downloadgvfs-c0dd33f20d70c1c1dcb729bfef9a9541d5fc4cdf.tar.gz
gdbus: Silence the G_IO_ERROR_NOT_MOUNTED error
This is a valid error used to indicate that we should (auto)mount first and should not be presented to the user.
-rw-r--r--client/gdaemonvfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/gdaemonvfs.c b/client/gdaemonvfs.c
index a2bcebcd..228a73fe 100644
--- a/client/gdaemonvfs.c
+++ b/client/gdaemonvfs.c
@@ -873,7 +873,7 @@ async_get_mount_info_response (GVfsDBusMountTracker *proxy,
res,
&error))
{
- g_warning ("Error from org.gtk.vfs.MountTracker.lookupMount(): %s", error->message);
+ /* g_warning ("Error from org.gtk.vfs.MountTracker.lookupMount(): %s", error->message); */
data->callback (NULL, data->user_data, error);
g_error_free (error);
}