Browse Source

wpa_supplicant: Print initialization information on startup

This lets someone know if they have a log file that properly
starts at the beginning.

Signed-hostap: Ben Greear <greearb@candelatech.com>
Ben Greear 13 years ago
parent
commit
bae489d292
1 changed files with 3 additions and 0 deletions
  1. 3 0
      wpa_supplicant/main.c

+ 3 - 0
wpa_supplicant/main.c

@@ -262,6 +262,9 @@ int main(int argc, char *argv[])
 		wpa_printf(MSG_ERROR, "Failed to initialize wpa_supplicant");
 		exitcode = -1;
 		goto out;
+	} else {
+		wpa_printf(MSG_INFO, "Successfully initialized "
+			   "wpa_supplicant");
 	}
 
 	for (i = 0; exitcode == 0 && i < iface_count; i++) {