From f54464bcf6eb670358ba06b89fc4f0cd4339c177 Mon Sep 17 00:00:00 2001 From: nekral-guest Date: Fri, 28 Dec 2007 22:31:45 +0000 Subject: [PATCH] Re-indent. --- src/chpasswd.c | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) 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); }