Bug 587949 - Handle locale-encoded names from struct pwent

Convert to utf8 internally.
This commit is contained in:
Colin Walters 2009-07-07 20:56:01 -04:00 committed by Colin Walters
parent f353283a40
commit 8a56b990dd

View File

@ -412,13 +412,16 @@ _gdm_user_update (GdmUser *user,
/* Display Name */
if (pwent->pw_gecos && pwent->pw_gecos[0] != '\0') {
gchar *first_comma;
gchar *real_name_utf8;
first_comma = strchr (pwent->pw_gecos, ',');
real_name_utf8 = g_locale_to_utf8 (pwent->pw_gecos, -1, NULL, NULL, NULL);
first_comma = strchr (real_name_utf8, ',');
if (first_comma) {
real_name = g_strndup (pwent->pw_gecos,
(first_comma - pwent->pw_gecos));
real_name = g_strndup (real_name_utf8, first_comma - real_name_utf8);
g_free (real_name_utf8);
} else {
real_name = g_strdup (pwent->pw_gecos);
real_name = real_name_utf8;
}
if (real_name[0] == '\0') {