From d605cf4c15e05e0cd212ef55ee58a9aabbffd056 Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Thu, 15 Apr 2021 12:42:41 +0200 Subject: [PATCH] shell/sc_nimble_netif: fix _connect_name scan dur --- sys/shell/commands/sc_nimble_netif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/shell/commands/sc_nimble_netif.c b/sys/shell/commands/sc_nimble_netif.c index 5914618ead..311879999a 100644 --- a/sys/shell/commands/sc_nimble_netif.c +++ b/sys/shell/commands/sc_nimble_netif.c @@ -443,7 +443,7 @@ int _nimble_netif_handler(int argc, char **argv) if (argc > 3) { duration = atoi(argv[3]); } - _cmd_connect_name(argv[2], duration * 1000); + _cmd_connect_name(argv[2], duration); return 0; }