summaryrefslogtreecommitdiff
path: root/daemon/gvfsjobsetattribute.c
diff options
context:
space:
mode:
authorMayank Sharma <mayank8019@gmail.com>2019-03-19 18:04:35 +0530
committerMayank Sharma <mayank8019@gmail.com>2019-03-21 20:00:23 +0000
commitf9c2f23f310a88a779284e3dfb6c0e4b90ab20b4 (patch)
tree51046a90cbd0d8d2f7180d8fe38104cab9d3ffd1 /daemon/gvfsjobsetattribute.c
parent1abc79f2d7f0c91f691939cb86aeda266ca5d948 (diff)
downloadgvfs-f9c2f23f310a88a779284e3dfb6c0e4b90ab20b4.tar.gz
daemon: Use "Operation not supported" consistently
GVfs uses different forms of "Operation not supported" string, e.g. "Operation unsupported", "Operation not supported by backend". Let's use "Operation not supported" consistently as this is also used in GLib. https://gitlab.gnome.org/GNOME/gvfs/issues/170
Diffstat (limited to 'daemon/gvfsjobsetattribute.c')
-rw-r--r--daemon/gvfsjobsetattribute.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/gvfsjobsetattribute.c b/daemon/gvfsjobsetattribute.c
index 943f79ca..1efe7c94 100644
--- a/daemon/gvfsjobsetattribute.c
+++ b/daemon/gvfsjobsetattribute.c
@@ -127,7 +127,7 @@ run (GVfsJob *job)
if (class->set_attribute == NULL)
{
g_vfs_job_failed (job, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
- _("Operation not supported by backend"));
+ _("Operation not supported"));
return;
}