diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2023-08-21 15:12:29 +0200 | 
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-21 15:12:29 +0200 | 
| commit | 08ad3ea4668f4f25648fd6b4369bdee2705a5bd0 (patch) | |
| tree | b0d0c50c882dd6c4473ea9e1e7398ed58d51d37f | |
| parent | 35542266c31b640931af233753cf2e38e4971d70 (diff) | |
Fix usage string… again
| -rw-r--r-- | main.c | 3 | 
1 files changed, 1 insertions, 2 deletions
@@ -41,8 +41,7 @@ static const char *bad_scheme = "Invalid scheme ‘%.*s’; expected ‘otpauthâ  static const char *bad_param = "Invalid ‘%s’ parameter provided";  static const char *empty_param = "Empty ‘%s’ parameter provided";  static const char *usage_s = -	"Usage: %s [-d digits] [-p period] [secret ...]\n" -	"       %s -u [uri ...]\n"; +	"Usage: %s [-d digits] [-p period] [-u] [secret ...]\n";  static void     usage(void);  static void     totp_print(struct totp_config, char *, bool);  |