diff options
author | Ningyuan Wang <nywang@google.com> | 2017-06-15 16:01:12 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-06-15 16:01:12 +0000 |
commit | e17d4dccf24a038320638c672a3dc91af2d20bea (patch) | |
tree | c7df1a8b6d44ef7acf48a597d7a1c53be4e8b69c /libwifi_system | |
parent | d15e710b6789a05b36ea92a8e5843a5af618db48 (diff) | |
parent | 619693476ec7b9dcbfbf197737f1b1638d1cd199 (diff) | |
download | frameworks_opt_net_wifi-e17d4dccf24a038320638c672a3dc91af2d20bea.tar.gz frameworks_opt_net_wifi-e17d4dccf24a038320638c672a3dc91af2d20bea.tar.bz2 frameworks_opt_net_wifi-e17d4dccf24a038320638c672a3dc91af2d20bea.zip |
Merge "Improve logging for supplicant config file" into oc-dev
am: 619693476e
Change-Id: I0eee0a03535f531ccd1cf6f7062a2f981e85df09
Diffstat (limited to 'libwifi_system')
-rw-r--r-- | libwifi_system/supplicant_manager.cpp | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/libwifi_system/supplicant_manager.cpp b/libwifi_system/supplicant_manager.cpp index d115dc1e7..28010ec8d 100644 --- a/libwifi_system/supplicant_manager.cpp +++ b/libwifi_system/supplicant_manager.cpp @@ -67,16 +67,22 @@ int ensure_config_file_exists(const char* config_file) { return false; } - templatePath = std::string("/system") + std::string(kSupplicantConfigTemplatePath); - srcfd = TEMP_FAILURE_RETRY(open(templatePath.c_str(), O_RDONLY)); + std::string configPathSystem = + std::string("/system") + std::string(kSupplicantConfigTemplatePath); + std::string configPathVendor = + std::string("/vendor") + std::string(kSupplicantConfigTemplatePath); + srcfd = TEMP_FAILURE_RETRY(open(configPathSystem.c_str(), O_RDONLY)); + templatePath = configPathSystem; if (srcfd < 0) { - LOG(ERROR) << "Cannot open \"" << templatePath << "\": " - << strerror(errno); - templatePath = std::string("/vendor") + std::string(kSupplicantConfigTemplatePath); - srcfd = TEMP_FAILURE_RETRY(open(templatePath.c_str(), O_RDONLY)); + int errnoSystem = errno; + srcfd = TEMP_FAILURE_RETRY(open(configPathVendor.c_str(), O_RDONLY)); + templatePath = configPathVendor; if (srcfd < 0) { - LOG(ERROR) << "Cannot open \"" << templatePath << "\": " - << strerror(errno); + int errnoVendor = errno; + LOG(ERROR) << "Cannot open \"" << configPathSystem << "\": " + << strerror(errnoSystem); + LOG(ERROR) << "Cannot open \"" << configPathVendor << "\": " + << strerror(errnoVendor); return false; } } |