Short option "s" was passed to getopt_long function, while there was
no condition on this option.
Fixes:
f5188211c721 ("examples/vhost_crypto: add sample application")
Cc: stable@dpdk.org
Signed-off-by: Ibtisam Tariq <ibtisam.tariq@emumba.com>
Acked-by: Fan Zhang <roy.fan.zhang@intel.com>
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
argvopt = argv;
- while ((opt = getopt_long(argc, argvopt, "s:",
+ while ((opt = getopt_long(argc, argvopt, "",
lgopts, &option_index)) != EOF) {
if (opt == '?') {