diff options
author | Mayank Sharma <mayank8019@gmail.com> | 2019-03-19 18:04:35 +0530 |
---|---|---|
committer | Mayank Sharma <mayank8019@gmail.com> | 2019-03-21 20:00:23 +0000 |
commit | f9c2f23f310a88a779284e3dfb6c0e4b90ab20b4 (patch) | |
tree | 51046a90cbd0d8d2f7180d8fe38104cab9d3ffd1 /daemon/gvfsjobqueryattributes.c | |
parent | 1abc79f2d7f0c91f691939cb86aeda266ca5d948 (diff) | |
download | gvfs-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/gvfsjobqueryattributes.c')
-rw-r--r-- | daemon/gvfsjobqueryattributes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/gvfsjobqueryattributes.c b/daemon/gvfsjobqueryattributes.c index dea6b3ba..6b56ef9b 100644 --- a/daemon/gvfsjobqueryattributes.c +++ b/daemon/gvfsjobqueryattributes.c @@ -142,7 +142,7 @@ run (GVfsJob *job) if (cb == NULL) { g_vfs_job_failed (job, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, - _("Operation not supported by backend")); + _("Operation not supported")); return; } |