From 11c2fb9893d3000a0f62a711f58ce57bf39ad0a5 Mon Sep 17 00:00:00 2001 From: Ben Kibbey Date: Sun, 18 Sep 2016 10:52:12 -0400 Subject: [PATCH] pwmc: Fix usage text. --- src/pwmc.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/pwmc.c b/src/pwmc.c index 52438cf9..d5a2af9d 100644 --- a/src/pwmc.c +++ b/src/pwmc.c @@ -265,7 +265,7 @@ usage (const char *pn, int status) " --new-passphrase-file \n" " obtain the passphrase to save with from the specified filename\n" " --sign-passphrase-file \n" - " obtain the passphrase to sign with (symmetric) from the specified filename\n" + " obtain the passphrase to sign with from the specified filename\n" " --key-params \n" " key parameters to use for key generation (pwmd default)\n" " --keyid [,]\n" @@ -290,21 +290,22 @@ usage (const char *pn, int status) #endif " --version\n" " --help\n"), + pn, #ifdef DEFAULT_PWMD_SOCKET DEFAULT_PWMD_SOCKET #else "~/.pwmd/socket" #endif - , pn); + ); fprintf (status == EXIT_FAILURE ? stderr : stdout, N_("\n" "An optional url may be in the form of:\n" " --url /path/to/socket\n" - " --url file://[path/to/socket]\n" + " --url file://[/path/to/socket]\n" #ifdef WITH_SSH " or\n" - " --url ssh[46]://[username@]hostname[:port]\n" - " --no-ssh-agent -i identity_file --url ssh[46]://[username@]hostname[:port]\n" + " --url ssh[46]://[username@]hostname[:port] (uses ssh-agent)\n" + " -i identity_file --url ssh[46]://[username@]hostname[:port]\n" #endif #ifdef WITH_GNUTLS " or\n" -- 2.11.4.GIT