diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2009-12-23 14:53:11 -0800 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2009-12-23 14:53:11 -0800 |
commit | 2b6c343612c961ec7744bcd2f7d5d47f7862f2c1 (patch) | |
tree | b4ad64de7671f18c1e090d39be196423de18c632 /src/config.c | |
parent | a714e940fbfd0ccefd63879189fbfa1306fbdf13 (diff) | |
download | connman-2b6c343612c961ec7744bcd2f7d5d47f7862f2c1.tar.gz connman-2b6c343612c961ec7744bcd2f7d5d47f7862f2c1.tar.bz2 connman-2b6c343612c961ec7744bcd2f7d5d47f7862f2c1.zip |
Fix copy-and-paste issue with SSID configuration field
Diffstat (limited to 'src/config.c')
-rw-r--r-- | src/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.c b/src/config.c index eb083e09..6afe7fcf 100644 --- a/src/config.c +++ b/src/config.c @@ -72,7 +72,7 @@ static int load_service(GKeyFile *keyfile, struct connman_config *config) service->type = str; } - hex_ssid = g_key_file_get_string(keyfile, "service", "Type", NULL); + hex_ssid = g_key_file_get_string(keyfile, "service", "SSID", NULL); if (hex_ssid != NULL) { char *ssid; unsigned int i, j = 0, hex; |