diff options
| -rw-r--r-- | main.go | 2 | 
1 files changed, 1 insertions, 1 deletions
@@ -83,7 +83,7 @@ func changePassword(args *argContainer) {  			os.Exit(exitcodes.Usage)  		}  		tlog.Info.Println("Please enter your new password.") -		newPw, err := readpassword.Twice([]string(args.extpass), []string(args.passfile)) +		newPw, err := readpassword.Twice(args.extpass, args.passfile)  		if err != nil {  			tlog.Fatal.Println(err)  			os.Exit(exitcodes.ReadPassword)  | 
