Use puts instead of printf

This commit is contained in:
Damien Miller 1999-11-22 22:42:17 +11:00
parent f7c0f82cee
commit 24e83aa312
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ int main(int argc, char **argv)
if (passphrase_dialog(&passphrase, message))
{
printf("%s\n", passphrase);
puts(passphrase);
memset(passphrase, '\0', strlen(passphrase));
}