commented set but unread variable wantSaveToEml

This commit is contained in:
dn337t@gmail.com 2012-07-20 09:04:23 +00:00
parent 71d90e54cd
commit eede7162bc

View file

@ -1545,7 +1545,7 @@ int CmdHF14AMfSniff(const char *Cmd){
// params
bool wantLogToFile = 0;
bool wantDecrypt = 0;
bool wantSaveToEml = 0;
//bool wantSaveToEml = 0; TODO
bool wantSaveToEmlFile = 0;
//var
@ -1579,7 +1579,7 @@ int CmdHF14AMfSniff(const char *Cmd){
char ctmp = param_getchar(Cmd, i);
if (ctmp == 'l' || ctmp == 'L') wantLogToFile = true;
if (ctmp == 'd' || ctmp == 'D') wantDecrypt = true;
if (ctmp == 'e' || ctmp == 'E') wantSaveToEml = true;
//if (ctmp == 'e' || ctmp == 'E') wantSaveToEml = true; TODO
if (ctmp == 'f' || ctmp == 'F') wantSaveToEmlFile = true;
}