[gdm] Bug 609179 — Date translation and duplicated strings



commit b252364af7c88e59a185f78b2e6ea8d68fe4a1aa
Author: Philip Withnall <philip tecnocode co uk>
Date:   Wed Apr 21 22:12:15 2010 +0100

    Bug 609179 â?? Date translation and duplicated strings
    
    Merge two similar translatable strings. Closes: bgo#609179

 daemon/gdm-server.c          |    2 +-
 daemon/gdm-welcome-session.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/daemon/gdm-server.c b/daemon/gdm-server.c
index ba10386..9dc01f7 100644
--- a/daemon/gdm-server.c
+++ b/daemon/gdm-server.c
@@ -389,7 +389,7 @@ change_user (GdmServer *server)
                 gid_t groups[1] = { 0 };
 
                 if (setgid (0) < 0)  {
-                        g_warning (_("Couldn't set groupid to 0"));
+                        g_warning (_("Couldn't set groupid to %d"), 0);
                         /* Don't error out, it's not fatal, if it fails we'll
                          * just still be */
                 }
diff --git a/daemon/gdm-welcome-session.c b/daemon/gdm-welcome-session.c
index e56fed0..abe0b48 100644
--- a/daemon/gdm-welcome-session.c
+++ b/daemon/gdm-welcome-session.c
@@ -571,7 +571,7 @@ spawn_child_setup (SpawnChildData *data)
                 gid_t groups[1] = { 0 };
 
                 if (setgid (0) < 0)  {
-                        g_warning (_("Couldn't set groupid to 0"));
+                        g_warning (_("Couldn't set groupid to %d"), 0);
                         /* Don't error out, it's not fatal, if it fails we'll
                          * just still be */
                 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]