more lint driven refactoring

This commit is contained in:
evilsocket 2018-04-24 18:26:16 +02:00
commit 0de6f3a76e
No known key found for this signature in database
GPG key ID: 1564D7F30393A456
57 changed files with 168 additions and 241 deletions

View file

@ -99,7 +99,7 @@ func (s *NTLMState) AddClientResponse(seq uint32, value string, cb func(data NTL
s.Lock()
defer s.Unlock()
if chall, found := s.Responses[seq]; found == true {
if chall, found := s.Responses[seq]; found {
pair := NTLMChallengeResponse{
Challenge: chall,
Response: value,