Fix nesting/indent level whitespace mismatch.

The EndData() doesn't make sense as part of the condition that implies
the state is such that it's not inside data.  It might make sense as
part of an else block, but it also seems fine to unconditionally
EndData() like it currently does.  That way unexpected states (mail !=
0) are dealt with sooner rather than later.
This commit is contained in:
Jon Siwek 2013-09-19 11:39:52 -05:00
parent a316878d01
commit 79bd81c8da

View file

@ -599,7 +599,7 @@ void SMTP_Analyzer::UpdateState(const int cmd_code, const int reply_code)
case 0:
if ( st != SMTP_IN_DATA )
UnexpectedCommand(cmd_code, reply_code);
EndData();
EndData();
state = SMTP_AFTER_DATA;
break;