Skip to content

Commit

Permalink
iFixes Manual Mode issue (endless loop oftransmition of Auth packets)
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
  • Loading branch information
vishalmti authored and Dmitry Shmidt committed Feb 13, 2010
1 parent a9765b5 commit 1e288e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wilink_6_1/stad/src/Connection_Managment/smeSelect.c
Expand Up @@ -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 */
Expand Down

0 comments on commit 1e288e6

Please sign in to comment.