fixing -k flag.

This commit is contained in:
Paul XPS 2019-02-07 16:05:04 -06:00
parent 8d88925cb6
commit 935e73a83f
1 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ INLOptions* parseOptions(int argc, char *argv[]) {
};
// FLAG_FORMAT must be kept in sync with any short options used in longopts.
const char *FLAG_FORMAT = "a:b:hc:d:m:p:s:v:w:x:y:z:";
const char *FLAG_FORMAT = "a:b:hc:d:k:m:p:s:v:w:x:y:z:";
int index = 0;
int rv = 0;
int kbyte = 0;
@ -380,4 +380,4 @@ error:
printf("Fatal error encountered, exiting.\n");
cleanup(context, transfer, L);
return 1;
}
}