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.
This commit is contained in:
Miguel de Icaza 1999-07-12 20:22:47 +00:00
parent 22e0eb09ed
commit da70c26149
2 changed files with 7 additions and 1 deletions

View File

@ -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>
* mc.keys.in.in: updated a few values.

View File

@ -900,7 +900,7 @@ perm_group_new (GnomeFilePropertyDialog *fp_dlg)
gentry = gtk_entry_new ();
gtk_widget_set_sensitive (gentry, FALSE);
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;
}