repository: Rename Load() -> LoadAndDecrypt()

This commit is contained in:
Alexander Neumann
2015-07-02 22:44:09 +02:00
parent c553a57e0d
commit 03983f0907
2 changed files with 3 additions and 3 deletions

View File

@@ -79,7 +79,7 @@ func (cmd CmdCat) Execute(args []string) error {
fmt.Println(string(buf))
return nil
case "index":
buf, err := repo.Load(backend.Index, id)
buf, err := repo.LoadAndDecrypt(backend.Index, id)
if err != nil {
return err
}