Merge pull request #22 from genofire/fix-component

[BUGFIX] no pointer in type case in component
This commit is contained in:
Mickaël Rémond 2019-05-31 19:44:44 +02:00 committed by GitHub
commit 0f6ff41792
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -62,9 +62,9 @@ func (c *Component) Connect(connStr string) error {
}
switch v := val.(type) {
case *StreamError:
case StreamError:
return errors.New("handshake failed " + v.Error.Local)
case *Handshake:
case Handshake:
return nil
default:
return errors.New("unexpected packet, got " + v.Name())