Skip to content

Commit

Permalink
*: Fix authentification typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin-M committed Dec 16, 2015
1 parent 172693b commit 8c1d3c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ func Run(config *config.APIConfig, st *utils.Stopper) {

tlsConfig, err := tlsClientConfig(config.CAFile)
if err != nil {
log.Fatalf("could not initialize client cert authentification: %s\n", err)
log.Fatalf("could not initialize client cert authentication: %s\n", err)
}
if tlsConfig != nil {
log.Info("main API configured with client certificate authentification")
log.Info("main API configured with client certificate authentication")
}

srv := &graceful.Server{
Expand All @@ -68,7 +68,7 @@ func Run(config *config.APIConfig, st *utils.Stopper) {
}

// RunHealth launches the Health API, which only exposes a method to fetch
// Clair's health without any security or authentification mechanism.
// Clair's health without any security or authentication mechanism.
func RunHealth(config *config.APIConfig, st *utils.Stopper) {
defer st.End()

Expand Down Expand Up @@ -118,7 +118,7 @@ func listenAndServeWithStopper(srv *graceful.Server, st *utils.Stopper, certFile
// certificate authentication.
//
// If no CA is given, a nil *tls.Config is returned; no client certificate will
// be required and verified. In other words, authentification will be disabled.
// be required and verified. In other words, authentication will be disabled.
func tlsClientConfig(caPath string) (*tls.Config, error) {
if caPath == "" {
return nil, nil
Expand Down
4 changes: 2 additions & 2 deletions notifier/notifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ func New(config *config.NotifierConfig) *Notifier {
// Initialize TLS.
tlsConfig, err := loadTLSClientConfig(config)
if err != nil {
log.Fatalf("could not initialize client cert authentification: %s\n", err)
log.Fatalf("could not initialize client cert authentication: %s\n", err)
}
if tlsConfig != nil {
log.Info("notifier configured with client certificate authentification")
log.Info("notifier configured with client certificate authentication")
}

httpClient := &http.Client{
Expand Down

0 comments on commit 8c1d3c9

Please sign in to comment.