1
1

1999-07-12 Miguel de Icaza <miguel@nuclecu.unam.mx>

* gnome-file-property-dialog.c (perm_group_new): Patch from
	Germano Leichsenring <germano@jedi.cs.kobe-u.ac.jp> that fixes the
	display of groups for non-root users.
Этот коммит содержится в:
Miguel de Icaza 1999-07-12 20:22:47 +00:00
родитель 22e0eb09ed
Коммит da70c26149
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,9 @@
1999-07-12 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gnome-file-property-dialog.c (perm_group_new): Patch from
Germano Leichsenring <germano@jedi.cs.kobe-u.ac.jp> that fixes the
display of groups for non-root users.
1999-07-07 <jrb@redhat.com> 1999-07-07 <jrb@redhat.com>
* mc.keys.in.in: updated a few values. * mc.keys.in.in: updated a few values.

Просмотреть файл

@ -900,7 +900,7 @@ perm_group_new (GnomeFilePropertyDialog *fp_dlg)
gentry = gtk_entry_new (); gentry = gtk_entry_new ();
gtk_widget_set_sensitive (gentry, FALSE); gtk_widget_set_sensitive (gentry, FALSE);
grp = getgrgid (fp_dlg->st.st_gid); grp = getgrgid (fp_dlg->st.st_gid);
gtk_entry_set_text (GTK_ENTRY (gentry), grpname); gtk_entry_set_text (GTK_ENTRY (gentry), grp->gr_name);
} }
return gentry; return gentry;
} }