summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2008-01-14 13:58:46 +0000
committerAlexander Larsson <alexl@src.gnome.org>2008-01-14 13:58:46 +0000
commit880ae669519292fce5e79fce049685f19e04cae4 (patch)
tree2e3db0811ef00335dd2a0127343193529e6be741
parent41bd0c9ffb7dd11cc6705704d848f9812ef646cf (diff)
downloadgvfs-880ae669519292fce5e79fce049685f19e04cae4.tar.gz
Don't translate g_warning strings
2008-01-14 Alexander Larsson <alexl@redhat.com> * daemon/gvfsdaemon.c: Don't translate g_warning strings svn path=/trunk/; revision=1122
-rw-r--r--ChangeLog5
-rw-r--r--daemon/gvfsdaemon.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 41e78dac..da055c30 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2008-01-14 Alexander Larsson <alexl@redhat.com>
+ * daemon/gvfsdaemon.c:
+ Don't translate g_warning strings
+
+2008-01-14 Alexander Larsson <alexl@redhat.com>
+
* client/httpuri.c:
(http_from_uri):
Only set "ssl" key in dav case.
diff --git a/daemon/gvfsdaemon.c b/daemon/gvfsdaemon.c
index 3637ceaa..2e3ff8eb 100644
--- a/daemon/gvfsdaemon.c
+++ b/daemon/gvfsdaemon.c
@@ -483,7 +483,7 @@ daemon_peer_connection_setup (GVfsDaemon *daemon,
if (data->fd == -1)
{
/* The fd connection failed, abort the whole thing */
- g_warning (_("Failed to accept client: %s"), _("accept of extra fd failed"));
+ g_warning ("Failed to accept client: %s", "accept of extra fd failed");
dbus_connection_unref (dbus_conn);
goto error_out;
}
@@ -492,7 +492,7 @@ daemon_peer_connection_setup (GVfsDaemon *daemon,
if (!dbus_connection_add_filter (dbus_conn, peer_to_peer_filter_func, daemon, NULL) ||
!dbus_connection_add_filter (dbus_conn, daemon_message_func, daemon, NULL))
{
- g_warning (_("Failed to accept client: %s"), _("object registration failed"));
+ g_warning ("Failed to accept client: %s", "object registration failed");
dbus_connection_unref (dbus_conn);
close (data->fd);
goto error_out;
@@ -730,7 +730,7 @@ accept_new_fd_client (GIOChannel *channel,
else if (data->fd == -1)
{
/* Didn't accept a dbus connection, and there is no need for one now */
- g_warning (_("Failed to accept client: %s"), _("accept of extra fd failed"));
+ g_warning ("Failed to accept client: %s", "accept of extra fd failed");
dbus_server_disconnect (data->server);
dbus_server_unref (data->server);
new_connection_data_free (data);