mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
FTP analyzer: Remove unnecessary lines from constructor
This commit is contained in:
parent
7e66261fd9
commit
d239f355fd
1 changed files with 0 additions and 4 deletions
|
@ -24,15 +24,11 @@ FTP_Analyzer::FTP_Analyzer(Connection* conn) : analyzer::tcp::TCP_ApplicationAna
|
|||
|
||||
nvt_orig = new analyzer::login::NVT_Analyzer(conn, true);
|
||||
nvt_orig->SetIsNULSensitive(true);
|
||||
nvt_orig->SetIsNULSensitive(true);
|
||||
nvt_orig->SetCRLFAsEOL(LF_as_EOL);
|
||||
nvt_orig->SetIsNULSensitive(LF_as_EOL);
|
||||
|
||||
nvt_resp = new analyzer::login::NVT_Analyzer(conn, false);
|
||||
nvt_resp->SetIsNULSensitive(true);
|
||||
nvt_resp->SetIsNULSensitive(true);
|
||||
nvt_resp->SetCRLFAsEOL(LF_as_EOL);
|
||||
nvt_resp->SetIsNULSensitive(LF_as_EOL);
|
||||
|
||||
nvt_resp->SetPeer(nvt_orig);
|
||||
nvt_orig->SetPeer(nvt_resp);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue