added shortcut for options --address and --nodatealiases

* allowed shortcut `-i` for `--address`
* allowed shortcut `-z` for `--nodatealiases`
This commit is contained in:
renaud gaudin 2020-02-10 15:30:31 +00:00
parent 19c3ebe629
commit 2744879df0

View File

@ -115,7 +115,7 @@ int main(int argc, char** argv)
while (true) {
int option_index = 0;
int c
= getopt_long(argc, argv, "mndvVla:p:f:t:r:", long_options, &option_index);
= getopt_long(argc, argv, "zmndvVla:p:f:t:r:i:", long_options, &option_index);
if (c != -1) {
switch (c) {