]> granicus.if.org Git - shadow/commitdiff
Re-indent.
authornekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Fri, 28 Dec 2007 22:31:45 +0000 (22:31 +0000)
committernekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Fri, 28 Dec 2007 22:31:45 +0000 (22:31 +0000)
src/chpasswd.c

index 4d1a70f0a348cc1bfc8842b1f9000b9afc4b04bf..5d4ea864a494809cfbb121c76c4633602bed2ab2 100644 (file)
@@ -73,24 +73,24 @@ static void close_files (void);
 static void usage (void)
 {
        fprintf (stderr, _("Usage: %s [options]\n"
-                          "\n"
-                          "Options:\n"
-                          "  -c, --crypt-method            the crypt method (one of %s)\n"
-                          "  -e, --encrypted               supplied passwords are encrypted\n"
-                          "  -h, --help                    display this help message and exit\n"
-                          "  -m, --md5                     encrypt the clear text password using\n"
-                          "                                the MD5 algorithm\n"
-                          "%s"
-                          "\n"),
-                        Prog,
+                          "\n"
+                          "Options:\n"
+                          "  -c, --crypt-method            the crypt method (one of %s)\n"
+                          "  -e, --encrypted               supplied passwords are encrypted\n"
+                          "  -h, --help                    display this help message and exit\n"
+                          "  -m, --md5                     encrypt the clear text password using\n"
+                          "                                the MD5 algorithm\n"
+                          "%s"
+                          "\n"),
+                        Prog,
 #ifndef USE_SHA_CRYPT
-                        "NONE DES MD5", ""
+                        "NONE DES MD5", ""
 #else
-                        "NONE DES MD5 SHA256 SHA512",
-                        _("  -s, --sha-rounds              number of SHA rounds for the SHA*\n"
-                          "                                crypt algorithms\n")
+                        "NONE DES MD5 SHA256 SHA512",
+                        _("  -s, --sha-rounds              number of SHA rounds for the SHA*\n"
+                          "                                crypt algorithms\n")
 #endif
-                        );
+                        );
        exit (E_USAGE);
 }