diff options
author | Jakob Unterwurzacher | 2018-06-25 22:45:44 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2018-07-01 20:56:22 +0200 |
commit | 3f9a4bbcaa7c3c78b2c709373172503a67084611 (patch) | |
tree | 74a67b147c06ab9918a9b0b86f91050ee1108b00 /main.go | |
parent | 1a5e9cfb1ef0191e4b0f48599a39f01244b692e4 (diff) |
main: replace naked panic with log.Panic
Fix the check that failed to find the case as well.
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,6 +2,7 @@ package main import ( "fmt" + "log" "os" "path/filepath" "runtime" @@ -89,7 +90,7 @@ func changePassword(args *argContainer) { exitcodes.Exit(err) } if len(masterkey) == 0 { - panic("empty masterkey") + log.Panic("empty masterkey") } tlog.Info.Println("Please enter your new password.") newPw := readpassword.Twice(args.extpass) |