Re-indent.

This commit is contained in:
nekral-guest 2007-12-28 22:31:45 +00:00
parent 05651a338e
commit f54464bcf6

View File

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