aboutsummaryrefslogtreecommitdiff
path: root/cmd/fscrypt/keys.go
diff options
context:
space:
mode:
authorJoseph Richey <joerichey@google.com>2017-07-18 10:59:40 -0700
committerGitHub <noreply@github.com>2017-07-18 10:59:40 -0700
commit8867856db45abaed8b9e2539ee7c34d99360db56 (patch)
tree5895bce36a9dff465057d84819b0d65255e1c702 /cmd/fscrypt/keys.go
parent3d08d9f6891db3ca94337e9b987ef62cba535fe1 (diff)
parent17f7dd867d0fd450377c6862c0782483d39ae408 (diff)
Merge pull request #22 from google/fix
Fixing fscrypt build system
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.