Fix spelling (#205)

This commit is contained in:
Felix Lechner 2018-02-04 11:38:22 -08:00 committed by rfjakob
parent 5b986288cf
commit bf2f9640c4
2 changed files with 2 additions and 2 deletions

View File

@ -117,7 +117,7 @@ func (ch *ctlSockHandler) handleRequest(in *RequestStruct, conn *net.UnixConn) {
var inPath, outPath, clean, warnText string
// You cannot perform both decryption and encryption in one request
if in.DecryptPath != "" && in.EncryptPath != "" {
err = errors.New("Ambigous")
err = errors.New("Ambiguous")
sendResponse(conn, err, "", "")
return
}

View File

@ -141,7 +141,7 @@ func main() {
}
if args.wpanic {
tlog.Warn.Wpanic = true
tlog.Debug.Printf("Panicing on warnings")
tlog.Debug.Printf("Panicking on warnings")
}
// Every operation below requires CIPHERDIR. Exit if we don't have it.
if flagSet.NArg() == 0 {