Skip to content

Commit

Permalink
Bug 520315 - Wifi scanning fails on the n900 device. r=biesinger
Browse files Browse the repository at this point in the history
  • Loading branch information
Doug Turner committed Oct 3, 2009
1 parent 71070ef commit e34c5dd
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions netwerk/wifi/src/nsWifiScannerUnix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,11 @@ nsWifiMonitor::DoScan()
if (!iwlib_handle) {
iwlib_handle = dlopen("libiw.so.29", RTLD_NOW);
if (!iwlib_handle) {
LOG(("Could not load libiw\n"));
return NS_ERROR_NOT_AVAILABLE;
iwlib_handle = dlopen("libiw.so.30", RTLD_NOW);
if (!iwlib_handle) {
LOG(("Could not load libiw\n"));
return NS_ERROR_NOT_AVAILABLE;
}
}
}
else {
Expand Down

0 comments on commit e34c5dd

Please sign in to comment.