summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVishal Mahaveer <vishalm@ti.com>2010-02-12 16:16:09 -0800
committerDmitry Shmidt <dimitrysh@google.com>2010-02-12 16:16:09 -0800
commit1e288e68a3d13d00a3014c0c0e0ddf308b1caabd (patch)
treea909b45530194b87f14c1720c8fed3c71197f502
parenta9765b523fbd66c698172bd6140e454ffa397842 (diff)
downloadti-1e288e68a3d13d00a3014c0c0e0ddf308b1caabd.tar.gz
iFixes Manual Mode issue (endless loop oftransmition of Auth packets)
Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
-rw-r--r--wilink_6_1/stad/src/Connection_Managment/smeSelect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wilink_6_1/stad/src/Connection_Managment/smeSelect.c b/wilink_6_1/stad/src/Connection_Managment/smeSelect.c
index 3b6bb6d..bd364ed 100644
--- a/wilink_6_1/stad/src/Connection_Managment/smeSelect.c
+++ b/wilink_6_1/stad/src/Connection_Managment/smeSelect.c
@@ -109,7 +109,7 @@ TSiteEntry *sme_Select (TI_HANDLE hSme)
TRACE6(pSme->hReport, REPORT_SEVERITY_INFORMATION , "sme_Select: considering BSSID: %02x:%02x:%02x:%02x:%02x:%02x for selection\n", pCurrentSite->bssid[ 0 ], pCurrentSite->bssid[ 1 ], pCurrentSite->bssid[ 2 ], pCurrentSite->bssid[ 3 ], pCurrentSite->bssid[ 4 ], pCurrentSite->bssid[ 5 ]);
/* if this site was previously selected in the current SME connection attempt, and conn mode is auto */
- if ((TI_TRUE == pCurrentSite->bConsideredForSelect) && (CONNECT_MODE_AUTO == pSme->eConnectMode))
+ if (TI_TRUE == pCurrentSite->bConsideredForSelect)
{
TRACE6(pSme->hReport, REPORT_SEVERITY_INFORMATION , "sme_Select: BSSID: %02x:%02x:%02x:%02x:%02x:%02x was selected previously\n", pCurrentSite->bssid[ 0 ], pCurrentSite->bssid[ 1 ], pCurrentSite->bssid[ 2 ], pCurrentSite->bssid[ 3 ], pCurrentSite->bssid[ 4 ], pCurrentSite->bssid[ 5 ]);
/* get the next site and continue the loop */