Fix writing of the wowlan_triggers parameter
The parameter wowlan_triggers is a global string and is not recognised if it is embraced with double-quotes. Signed-off-by: Philippe Nunes <philippe.nunes@linux.intel.com>
This commit is contained in:
parent
ec5357323c
commit
8b627b7c47
1 changed files with 1 additions and 1 deletions
|
@ -1170,7 +1170,7 @@ static void wpa_config_write_global(FILE *f, struct wpa_config *config)
|
|||
config->tdls_external_control);
|
||||
|
||||
if (config->wowlan_triggers)
|
||||
fprintf(f, "wowlan_triggers=\"%s\"\n",
|
||||
fprintf(f, "wowlan_triggers=%s\n",
|
||||
config->wowlan_triggers);
|
||||
|
||||
if (config->bgscan)
|
||||
|
|
Loading…
Reference in a new issue