wpa_cli: Clean up logical operation
While '!func() == 0' here resulted in correct behavior, it is not clear and clang is starting to warn about this (-Wlogical-not-parentheses). Use 'func()' instead as the condition to clear this. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
24c382af7a
commit
ddd0032e03
1 changed files with 1 additions and 1 deletions
|
@ -4152,7 +4152,7 @@ static void try_connection(void *eloop_ctx, void *timeout_ctx)
|
|||
if (ctrl_ifname == NULL)
|
||||
ctrl_ifname = wpa_cli_get_default_ifname();
|
||||
|
||||
if (!wpa_cli_open_connection(ctrl_ifname, 1) == 0) {
|
||||
if (wpa_cli_open_connection(ctrl_ifname, 1)) {
|
||||
if (!warning_displayed) {
|
||||
printf("Could not connect to wpa_supplicant: "
|
||||
"%s - re-trying\n",
|
||||
|
|
Loading…
Reference in a new issue