2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-21 10:12:22 +00:00

Merge pull request #484 from mholt/patch-1

Change ErrNoKeyFound message
This commit is contained in:
Alexander Neumann 2016-03-11 21:26:19 +01:00
commit 49eb55c457

View File

@ -16,7 +16,7 @@ import (
var ( var (
// ErrNoKeyFound is returned when no key for the repository could be decrypted. // ErrNoKeyFound is returned when no key for the repository could be decrypted.
ErrNoKeyFound = errors.New("no key could be found") ErrNoKeyFound = errors.New("wrong password or no key found")
) )
// TODO: figure out scrypt values on the fly depending on the current // TODO: figure out scrypt values on the fly depending on the current