]> granicus.if.org Git - shadow/commitdiff
* src/grpck.c: Added comments.
authornekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Fri, 22 Jul 2011 22:07:23 +0000 (22:07 +0000)
committernekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Fri, 22 Jul 2011 22:07:23 +0000 (22:07 +0000)
* src/grpck.c: Avoid implicit conversion of pointer to boolean.
* src/grpck.c: Remove dead code. argc cannot be lower than optind.
Avoid checking twice in a row for NULL != list[i].

ChangeLog
src/grpck.c

index c7857eda90d4be0a122caa7144dabaa873e1d114..a73127e66c16ddccceae410e92376188603c6d68 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2011-07-23  Nicolas François  <nicolas.francois@centraliens.net>
+
+       * src/grpck.c: Added comments.
+       * src/grpck.c: Avoid implicit conversion of pointer to boolean.
+       * src/grpck.c: Remove dead code. argc cannot be lower than optind.
+       Avoid checking twice in a row for NULL != list[i].
+
 2011-07-22  Nicolas François  <nicolas.francois@centraliens.net>
 
        * libmisc/find_new_gid.c, libmisc/find_new_uid.c: Fail in case of
index b0ae23a9cee34992a9779ec07ddbb1de32ee8218..93f35dd42a3970c88f27c9fcdecd80da92f391fe 100644 (file)
@@ -3,7 +3,7 @@
  * Copyright (c) 1996 - 2000, Marek Michałkiewicz
  * Copyright (c) 2001       , Michał Moskal
  * Copyright (c) 2001 - 2006, Tomasz Kłoczko
- * Copyright (c) 2007 - 2009, Nicolas François
+ * Copyright (c) 2007 - 2011, Nicolas François
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -148,21 +148,21 @@ static void usage (void)
  * delete_member - delete an entry in a list of members
  *
  * It only deletes the first entry with the given name.
+ * The member is defined by its address, no string comparison are
+ * performed.
  */
 static void delete_member (char **list, const char *member)
 {
        int i;
 
-       for (i = 0; list[i]; i++) {
+       for (i = 0; NULL != list[i]; i++) {
                if (list[i] == member) {
                        break;
                }
        }
 
-       if (list[i]) {
-               for (; list[i]; i++) {
-                       list[i] = list[i + 1];
-               }
+       for (; NULL != list[i]; i++) {
+               list[i] = list[i + 1];
        }
 }
 
@@ -203,9 +203,9 @@ static void process_flags (int argc, char **argv)
         * Make certain we have the right number of arguments
         */
 #ifdef SHADOWGRP
-       if ((argc < optind) || (argc > (optind + 2)))
+       if (argc > (optind + 2))
 #else
-       if ((argc < optind) || (argc > (optind + 1)))
+       if (argc > (optind + 1))
 #endif
        {
                usage ();