aboutsummaryrefslogtreecommitdiff
path: root/cmd/fscrypt/keys.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/fscrypt/keys.go')
-rw-r--r--cmd/fscrypt/keys.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/fscrypt/keys.go b/cmd/fscrypt/keys.go
index 65360a9..872ca2a 100644
--- a/cmd/fscrypt/keys.go
+++ b/cmd/fscrypt/keys.go
@@ -87,7 +87,7 @@ func (p passphraseReader) Read(buf []byte) (int, error) {
// the passphrase into the key normally.
func getPassphraseKey(prompt string) (*crypto.Key, error) {
if !quietFlag.Value {
- fmt.Printf(prompt)
+ fmt.Print(prompt)
}
// Only disable echo if stdin is actually a terminal.