Tomas Bzatek e52f9c5
From 1a2aff08c16c87fcae10563acd9485624a5e262d Mon Sep 17 00:00:00 2001
Tomas Bzatek e52f9c5
From: Tomas Bzatek <tbzatek@redhat.com>
Tomas Bzatek e52f9c5
Date: Mon, 22 Feb 2010 14:26:06 +0100
Tomas Bzatek e52f9c5
Subject: [PATCH] Don't use localized realm string when starting httpd
Tomas Bzatek e52f9c5
Tomas Bzatek e52f9c5
---
Tomas Bzatek e52f9c5
 src/http.c |    2 +-
Tomas Bzatek e52f9c5
 1 files changed, 1 insertions(+), 1 deletions(-)
Tomas Bzatek e52f9c5
Tomas Bzatek e52f9c5
diff --git a/src/http.c b/src/http.c
Tomas Bzatek e52f9c5
index 367394a..3367d2a 100644
Tomas Bzatek e52f9c5
--- a/src/http.c
Tomas Bzatek e52f9c5
+++ b/src/http.c
Tomas Bzatek e52f9c5
@@ -369,7 +369,7 @@ spawn_httpd (int port, pid_t *pid_out)
Tomas Bzatek e52f9c5
 	free5 = env[i++] = g_strdup_printf ("XDG_PUBLICSHARE_DIR=%s", public_dir);
Tomas Bzatek e52f9c5
 	free6 = env[i++] = g_strdup_printf ("XDG_CONFIG_HOME=%s", g_get_user_config_dir ());
Tomas Bzatek e52f9c5
 	free7 = env[i++] = g_strdup_printf ("GUS_SHARE_NAME=%s", get_share_name ());
Tomas Bzatek e52f9c5
-	free8 = env[i++] = g_strdup_printf ("GUS_LOGIN_LABEL=%s", _("Please log in as the user guest"));
Tomas Bzatek e52f9c5
+	free8 = env[i++] = g_strdup_printf ("GUS_LOGIN_LABEL=%s", "Please log in as the user guest");
Tomas Bzatek e52f9c5
 	free9 = env[i++] = g_strdup_printf ("HTTP_MODULES_PATH=%s",get_httpd_modules_path ());
Tomas Bzatek e52f9c5
 	env[i++] = "LANG=C";
Tomas Bzatek e52f9c5
 	env[i] = NULL;
Tomas Bzatek e52f9c5
-- 
Tomas Bzatek e52f9c5
1.7.0
Tomas Bzatek e52f9c5