diff options
author | Christian Pointner <equinox@anytun.org> | 2008-04-12 09:48:14 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2008-04-12 09:48:14 +0000 |
commit | 344ce83a10fc6dea31a3d8fc3ba6c578f3efa742 (patch) | |
tree | 6a45d1e680d462b403512fea2e6c7a78ac2806d0 /anymuxOptions.cpp | |
parent | Key and Salt Option get blanked out after parsing options (diff) |
added key/salt options blanking to all other tools
Diffstat (limited to 'anymuxOptions.cpp')
-rw-r--r-- | anymuxOptions.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/anymuxOptions.cpp b/anymuxOptions.cpp index 418eebd..c892e26 100644 --- a/anymuxOptions.cpp +++ b/anymuxOptions.cpp @@ -101,12 +101,14 @@ Options::~Options() i+=2; \ } -#define PARSE_HEXSTRING_PARAM(SHORT, LONG, VALUE) \ +#define PARSE_HEXSTRING_PARAM_SEC(SHORT, LONG, VALUE) \ else if(str == SHORT || str == LONG) \ { \ if(argc < 1 || argv[i+1][0] == '-') \ return false; \ VALUE = Buffer(std::string(argv[i+1])); \ + for(size_t j=0; j < strlen(argv[i+1]); ++j) \ + argv[i+1][j] = '#'; \ argc--; \ i++; \ } |