Print newline after gocryptfs.conf not found error

This commit is contained in:
Jakob Unterwurzacher 2015-11-25 19:50:58 +01:00
parent dce0564f2a
commit df46548be6
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ func loadConfig(args *argContainer) (masterkey []byte, confFile *cryptfs.ConfFil
// Check if the file exists at all before prompting for a password
_, err := os.Stat(args.config)
if err != nil {
fmt.Print(err)
fmt.Println(err)
os.Exit(ERREXIT_LOADCONF)
}
fmt.Printf("Password: ")