]> granicus.if.org Git - shadow/commitdiff
* src/groupmems.c: Call open_files() and close_files().
authornekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Sat, 6 Sep 2008 16:27:21 +0000 (16:27 +0000)
committernekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Sat, 6 Sep 2008 16:27:21 +0000 (16:27 +0000)
* src/groupmems.c: Always call check_perms(), which takes care of
checking if --list is used.

ChangeLog
src/groupmems.c

index 9ae23d6442ab65547520b392239e30a6824ab822..83e6335b3b106d75a55384310fb94e86ac5aec17 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-06  Nicolas François  <nicolas.francois@centraliens.net>
+
+       * src/groupmems.c: Call open_files() and close_files().
+       * src/groupmems.c: Always call check_perms(), which takes care of
+       checking if --list is used.
+
 2008-09-06  Nicolas François  <nicolas.francois@centraliens.net>
 
        * libmisc/obscure.c: Compare characters to '\0', not NULL.
index abfc25bc50fce4881ca85bb32ee69c4628df55dd..bdad3ac86a33a68569d056c492fbc86f107afe8d 100644 (file)
@@ -607,20 +607,11 @@ int main (int argc, char **argv)
                }
        }
 
-       if (!list) {
-               check_perms ();
+       check_perms ();
 
-               if (gr_lock () == 0) {
-                       fprintf (stderr,
-                                _("%s: cannot lock %s; try again later.\n"),
-                                Prog, gr_dbname ());
-                       fail_exit (EXIT_GROUP_FILE);
-               }
-               gr_locked = true;
-       }
+       open_files ();
 
        grp = gr_locate (name);
-
        if (NULL == grp) {
                fprintf (stderr, _("%s: group '%s' does not exist in %s\n"),
                         Prog, name, gr_dbname ());
@@ -637,16 +628,7 @@ int main (int argc, char **argv)
                purge_members (grp);
        }
 
-       if (gr_close () == 0) {
-               fprintf (stderr, _("%s: failure while writing changes to %s\n"), Prog, gr_dbname ());
-               SYSLOG ((LOG_ERR, "failure while writing %s", gr_dbname ()));
-               fail_exit (EXIT_GROUP_FILE);
-       }
-       if (gr_unlock () == 0) {
-               fprintf (stderr, _("%s: failed to unlock %s\n"), Prog, gr_dbname ());
-               SYSLOG ((LOG_ERR, "failed to unlock %s", gr_dbname ()));
-               /* continue */
-       }
+       close_files ();
 
        exit (EXIT_SUCCESS);
 }