summaryrefslogtreecommitdiff
path: root/password.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-11-09 23:26:56 +0100
committerJakob Unterwurzacher2015-11-09 23:33:35 +0100
commite43733ca0d995a48324ef75c952cc6cf25000650 (patch)
tree456befd943162f91ee007bfb2d21598f0d966032 /password.go
parent51fcf61630905f5dc9370e18522cd0a6c086856d (diff)
Also hide master key reminder with "-q"
Also fix missing newline after password prompt
Diffstat (limited to 'password.go')
-rw-r--r--password.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/password.go b/password.go
index 821ecb4..6b3452a 100644
--- a/password.go
+++ b/password.go
@@ -9,9 +9,8 @@ import (
func readPasswordTwice() string {
fmt.Printf("Password: ")
p1 := readPassword()
- fmt.Printf("\nRepeat: ")
+ fmt.Printf("Repeat: ")
p2 := readPassword()
- fmt.Printf("\n")
if p1 != p2 {
fmt.Printf("Passwords do not match\n")
os.Exit(ERREXIT_PASSWORD)
@@ -23,6 +22,7 @@ func readPasswordTwice() string {
func readPassword() string {
fd := int(os.Stdin.Fd())
p, err := terminal.ReadPassword(fd)
+ fmt.Printf("\n")
if err != nil {
fmt.Printf("Error: Could not read password: %v\n", err)
os.Exit(ERREXIT_PASSWORD)