* utilunix.c (destroy_groups): Revert last change, it doesn't

work with glib-1.2.x.
This commit is contained in:
Pavel Roskin 2003-02-21 16:32:32 +00:00
parent 71b13d75c6
commit 0f70a1c7ea
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-02-21 Pavel Roskin <proski@gnu.org>
* utilunix.c (destroy_groups): Revert last change, it doesn't
work with glib-1.2.x.
2003-02-19 Andrew V. Samoilov <sav@bcs.zp.ua>
* option.c (init_configure): Use OTHER_OPTIONS consistently.

View File

@ -123,7 +123,7 @@ get_user_permissions (struct stat *buf) {
void
destroy_groups (void)
{
g_tree_foreach (current_user_gid, mc_gid_destroy, NULL);
g_tree_traverse (current_user_gid, mc_gid_destroy, G_POST_ORDER, NULL);
g_tree_destroy (current_user_gid);
}