Remove setting unused variable value in FTP::parse_eftp

This commit is contained in:
Tim Wojtulewicz 2025-05-21 10:50:15 -07:00
parent aaca36dc22
commit ff4d1a4121

View file

@ -76,10 +76,7 @@ static zeek::RecordValPtr parse_eftp(const char* line)
{
const char* nptr = strchr(line, delimiter);
if ( nptr == NULL )
{
nptr = line + strlen(line);
good = false;
}
std::string s(line, nptr-line); // extract IP address
struct in6_addr result;