]> granicus.if.org Git - shadow/commitdiff
* src/grpconv.c, src/groups.c: Name the parameters in the
authornekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Sun, 31 Aug 2008 17:28:12 +0000 (17:28 +0000)
committernekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Sun, 31 Aug 2008 17:28:12 +0000 (17:28 +0000)
prototypes of the static functions.
* src/grpconv.c: Fail if unexpected parameters are provided.
* src/grpconv.c: Indicate that argc is not used in the no
SHADOWGRP version.

ChangeLog
src/grpconv.c

index 1715304f7e0467c15c6e224d7af5329117cef8fb..e7fdeb136dd5c2708693a24cad8e80d903648609 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-08-28  Nicolas François  <nicolas.francois@centraliens.net>
+
+       * src/grpconv.c, src/groups.c: Name the parameters in the
+       prototypes of the static functions.
+       * src/grpconv.c: Fail if unexpected parameters are provided.
+       * src/grpconv.c: Indicate that argc is not used in the no
+       SHADOWGRP version.
+
 2008-08-28  Nicolas François  <nicolas.francois@centraliens.net>
 
        * src/chgpasswd.c, src/chpasswd.c: Removed variable ok, which is
index 6c889bbd4a5691794049df40d38375e20be830ee..f1efeb37dae5fcbd60127ecd06a13ad4117af9b2 100644 (file)
@@ -58,7 +58,7 @@ static bool sgr_locked = false;
 static char *Prog;
 
 /* local function prototypes */
-static void fail_exit (int);
+static void fail_exit (int status);
 
 static void fail_exit (int status)
 {
@@ -88,6 +88,9 @@ int main (int argc, char **argv)
        const struct sgrp *sg;
        struct sgrp sgent;
 
+       if (1 != argc) {
+               (void) fputs (_("Usage: grpconv\n"), stderr);
+       }
        Prog = Basename (argv[0]);
 
        (void) setlocale (LC_ALL, "");
@@ -218,7 +221,7 @@ int main (int argc, char **argv)
        return 0;
 }
 #else                          /* !SHADOWGRP */
-int main (int argc, char **argv)
+int main (int unused(argc), char **argv)
 {
        fprintf (stderr,
                 "%s: not configured for shadow group support.\n", argv[0]);