diff options
author | Jouni Malinen <j@w1.fi> | 2013-12-29 08:23:45 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2013-12-29 09:25:59 (GMT) |
commit | 006309b54616090409df93289cb724ff0e5a0451 (patch) | |
tree | 9eb2328674064d7f84a68bab18f399a1643090bd /src/ap/wpa_auth_ft.c | |
parent | e4357b190f70538888fdf02ab39af27824f01416 (diff) | |
download | hostap-006309b54616090409df93289cb724ff0e5a0451.zip hostap-006309b54616090409df93289cb724ff0e5a0451.tar.gz hostap-006309b54616090409df93289cb724ff0e5a0451.tar.bz2 |
Fix whitespace style
Commit 88b32a99d30894b2d6bb391371c442fc117edbab added couple of lines
with incorrect indentation.
Signed-hostap: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'src/ap/wpa_auth_ft.c')
-rw-r--r-- | src/ap/wpa_auth_ft.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ap/wpa_auth_ft.c b/src/ap/wpa_auth_ft.c index b9e8b3d..c22c4cc 100644 --- a/src/ap/wpa_auth_ft.c +++ b/src/ap/wpa_auth_ft.c @@ -57,7 +57,7 @@ static int wpa_ft_add_tspec(struct wpa_authenticator *wpa_auth, u8 *tspec_ie, size_t tspec_ielen) { if (wpa_auth->cb.add_tspec == NULL) { - wpa_printf(MSG_DEBUG, "FT: add_tspec is not initialized"); + wpa_printf(MSG_DEBUG, "FT: add_tspec is not initialized"); return -1; } return wpa_auth->cb.add_tspec(wpa_auth->cb.ctx, sta_addr, tspec_ie, @@ -570,8 +570,8 @@ static u8 * wpa_ft_process_rdie(struct wpa_state_machine *sm, else { /* TSPEC accepted; include updated TSPEC in * response */ - rdie->descr_count = 1; - pos += sizeof(*tspec); + rdie->descr_count = 1; + pos += sizeof(*tspec); } return pos; } |