From: nekral-guest Date: Fri, 28 Dec 2007 22:31:45 +0000 (+0000) Subject: Re-indent. X-Git-Tag: 4.1.1~236 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f54464bcf6eb670358ba06b89fc4f0cd4339c177;p=shadow Re-indent. --- diff --git a/src/chpasswd.c b/src/chpasswd.c index 4d1a70f0..5d4ea864 100644 --- a/src/chpasswd.c +++ b/src/chpasswd.c @@ -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); }