Browse Source

Fix typo: openned->opened

Bryan Boreham 7 years ago
parent
commit
64f7759764
1 changed files with 1 additions and 1 deletions
  1. 1 1
      config/krb5conf.go

+ 1 - 1
config/krb5conf.go

@@ -468,7 +468,7 @@ func (c *Config) ResolveRealm(domainName string) string {
 func Load(cfgPath string) (*Config, error) {
 	fh, err := os.Open(cfgPath)
 	if err != nil {
-		return nil, errors.New("configuration file could not be openned: " + cfgPath + " " + err.Error())
+		return nil, errors.New("configuration file could not be opened: " + cfgPath + " " + err.Error())
 	}
 	defer fh.Close()
 	scanner := bufio.NewScanner(fh)