aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Tiemann <rtie@gmx.de>2024-02-13 14:17:50 +0100
committerDenis Kenzior <denkenz@gmail.com>2024-04-18 10:40:52 -0500
commitb569e011f4cb94b6cdac741b28d54a5b8aa836db (patch)
treeb078d4ec8df1377e11fd04974f1402df372efde1
parente7d72d1eb063fef0e6dd525cabbde87625984a01 (diff)
downloadconnman-b569e011f4cb94b6cdac741b28d54a5b8aa836db.tar.gz
wifi: Fix indentation.
-rw-r--r--plugins/wifi.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/wifi.c b/plugins/wifi.c
index cc30d2586..12389fa63 100644
--- a/plugins/wifi.c
+++ b/plugins/wifi.c
@@ -3405,11 +3405,11 @@ static GSupplicantSSID *ssid_ap_init(const struct connman_technology *technology
ap->security = G_SUPPLICANT_SECURITY_NONE;
ap->passphrase = NULL;
} else {
- ap->security = G_SUPPLICANT_SECURITY_PSK;
- ap->protocol = G_SUPPLICANT_PROTO_RSN;
- ap->pairwise_cipher = G_SUPPLICANT_PAIRWISE_CCMP;
- ap->group_cipher = G_SUPPLICANT_GROUP_CCMP;
- ap->passphrase = g_strdup(passphrase);
+ ap->security = G_SUPPLICANT_SECURITY_PSK;
+ ap->protocol = G_SUPPLICANT_PROTO_RSN;
+ ap->pairwise_cipher = G_SUPPLICANT_PAIRWISE_CCMP;
+ ap->group_cipher = G_SUPPLICANT_GROUP_CCMP;
+ ap->passphrase = g_strdup(passphrase);
}
return ap;