Skip to content

Commit

Permalink
authenfitication -> authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
ph committed May 17, 2018
1 parent 64551ef commit 0b1d1ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libbeat/common/transport/tlscommon/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,12 @@ func (m *tlsClientAuth) Unpack(in interface{}) error {

s, ok := in.(string)
if !ok {
return fmt.Errorf("client authentification must be an identifier")
return fmt.Errorf("client authentication must be an identifier")
}

mode, found := tlsClientAuthTypes[s]
if !found {
return fmt.Errorf("unknown client authentification mode'%v'", s)
return fmt.Errorf("unknown client authentication mode'%v'", s)
}

*m = mode
Expand Down

0 comments on commit 0b1d1ad

Please sign in to comment.