Skip to content

Commit

Permalink
2018-02-26 FeedingBottle-3.38
Browse files Browse the repository at this point in the history
Fixed some bugs in the ScanAP(), APBrower(), RefreshClientList() functions.
  • Loading branch information
ChunshengZhao committed Feb 26, 2018
1 parent f29b88c commit 0c0a4cb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
3 changes: 3 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ ZhaoChunsheng Tianjin,China
- - - - - -
Changelog:

2018-02-26 FeedingBottle-3.38
--- Fixed some bugs in the ScanAP(), APBrower(), RefreshClientList() functions.

2018-02-24 FeedingBottle-3.37
--- Rewrite the option "airmon-ng check kill".

Expand Down
10 changes: 8 additions & 2 deletions feedingbottle.fl
Original file line number Diff line number Diff line change
Expand Up @@ -337,9 +337,9 @@ else
xywh {142 270 365 25} box UP_BOX color 34 labelfont 5 labelcolor 48 textfont 5 textsize 12 textcolor 1
}
Fl_Button {} {
label {FeedingBottle 3.37}
label {FeedingBottle 3.38}
callback Box_About_CallBack
tooltip {Coded by ZhaoChunsheng (Tianjin,China) at 2018.02.24} xywh {5 325 175 25} box NO_BOX color 0 labelfont 7 labelcolor 232
tooltip {Coded by ZhaoChunsheng (Tianjin,China) at 2018.02.26} xywh {5 325 175 25} box NO_BOX color 0 labelfont 7 labelcolor 232
}
}
Fl_Group {} {
Expand Down Expand Up @@ -1895,6 +1895,8 @@ if(Button_ScanAP->value()==1)
char item[5][33] = \{\{0\}\};
int i=0;
int APNum=0;

memset(APInfo,0,sizeof(APInfo));

while(fgets(ReadLine,256,file_desc) && APNum!=128)
\{
Expand Down Expand Up @@ -1993,6 +1995,8 @@ if(Brower_APBrower->value())//if click NULL(0 ap found),the value is NULL
int i=0;
int ClientNum=0;
int ClientListStart=0;

memset(ClientInfo,0,sizeof(ClientInfo));

while(fgets(ReadLine,256,file_desc)&&ClientNum!=64)
{
Expand Down Expand Up @@ -2902,6 +2906,8 @@ else
int i=0;
int ClientNum=0;
int ClientListStart=0;

memset(ClientInfo,0,sizeof(ClientInfo));

while(fgets(ReadLine,256,file_desc)&&ClientNum!=64)
{
Expand Down

0 comments on commit 0c0a4cb

Please sign in to comment.