Don't double send non-important packets

This commit is contained in:
Nonoo 2020-10-23 23:21:30 +02:00
parent bbddf769b0
commit efd81c9568
2 changed files with 0 additions and 6 deletions

View file

@ -105,9 +105,6 @@ func (s *controlStream) sendPkt0() error {
if err := s.common.send(p); err != nil {
return err
}
if err := s.common.send(p); err != nil {
return err
}
s.authSendSeq++
return nil
}