1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
Description: fixed interger typo
* replaced interger with integer
Author: Cord Beermann <cord@debian.org>
--- passwordmaker-cli-1.5+dfsg.orig/ReadMe.txt
+++ passwordmaker-cli-1.5+dfsg/ReadMe.txt
@@ -90,7 +90,7 @@ USAGE
./passwordmaker [-f <string>] [--search <string>] [-L] [-b] [-0] [-x]
[-r <string>] [-a <MD4|MD5|SHA1|SHA256|RIPEMD160>]
- [--account_skip <interger>] [--account <string>] [-c
+ [--account_skip <integer>] [--account <string>] [-c
<string>] [-g <integer>] [-d <string>] [-s <string>]
[-p <string>] [-u <string>] [-l <none|before|after
|both>] [-e <1|2|3|4|5|6|7|8|9>] [-m <string>] [--]
@@ -128,7 +128,7 @@ Where:
|RIPEMD160>
(value required) Hash Algorithm
- --account_skip <interger>
+ --account_skip <integer>
(value required) Account skip
--account <string>
--- passwordmaker-cli-1.5+dfsg.orig/main.cpp
+++ passwordmaker-cli-1.5+dfsg/main.cpp
@@ -79,7 +79,7 @@ SettingsStruct getSettings(int argc, cha
// Short flag needed
ValueArg<string> account("", "account", "Account", false, "", "string", cmd);
// Short flag needed
- ValueArg<int> account_skip("", "account_skip", "Account skip", false, 0, "interger", cmd);
+ ValueArg<int> account_skip("", "account_skip", "Account skip", false, 0, "integer", cmd);
vector<string> allowedAlgorithms;
allowedAlgorithms.push_back("MD4");
|