diff options
author | Jakob Unterwurzacher | 2017-01-29 18:55:52 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-01-29 18:55:52 +0100 |
commit | 1273d7edae3ce72b15dc0d18b5fcc80fd8d3ae15 (patch) | |
tree | 047b175ccf5152481a8ec932f59d221a2e2c46f3 /internal | |
parent | 53fe6f569042200b9a390bccb589829ce1ec0dce (diff) |
ctlsock: better error message for forward mode path decryption
Diffstat (limited to 'internal')
-rw-r--r-- | internal/fusefrontend/ctlsock_interface.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/fusefrontend/ctlsock_interface.go b/internal/fusefrontend/ctlsock_interface.go index 619d747..8d8b096 100644 --- a/internal/fusefrontend/ctlsock_interface.go +++ b/internal/fusefrontend/ctlsock_interface.go @@ -15,5 +15,5 @@ func (fs *FS) EncryptPath(plainPath string) (string, error) { // DecryptPath implements ctlsock.Backend func (fs *FS) DecryptPath(cipherPath string) (string, error) { - return "", errors.New("not implemented (yet?)") + return "", errors.New("Forward mode does not have path decryption implemented") } |