Fix a typo: replace Depricated by Deprecated.

This commit is contained in:
Jody Frankowski
2016-05-11 11:18:32 +02:00
parent da071cb120
commit eecd2c60f5
3 changed files with 4 additions and 4 deletions

View File

@@ -57,7 +57,7 @@ func (c TOMLLoader) Load(pathToToml, keyPass, sudoPass string) (err error) {
for name, v := range conf.Servers {
if 0 < len(v.KeyPassword) || 0 < len(v.Password) {
log.Warn("[Depricated] password and keypassword in config file are unsecure. Remove them immediately for a security reason. They will be removed in a future release.")
log.Warn("[Deprecated] password and keypassword in config file are unsecure. Remove them immediately for a security reason. They will be removed in a future release.")
}
s := ServerInfo{ServerName: name}