logo

checkpassword-ng

Uniform password checking interface for applications
commit: d35d524a3d1634852bc7aec17041e51fe129d823
parent a45df24710e06c515a3d1aef0654e22655d55063
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Mon, 10 May 2021 09:26:49 +0200

checkpassword.c: Remove debug printf

Diffstat:

Mcheckpassword.c2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/checkpassword.c b/checkpassword.c @@ -48,7 +48,6 @@ main(int argc, char *argv[]) char *buf = input; memcpy(username, buf, strlen(buf)); - printf("username = %s\n", username); if(username == NULL) { fprintf(stderr, "couldn't extract username, exiting...\n"); @@ -57,7 +56,6 @@ main(int argc, char *argv[]) buf += strlen(buf) + 1; memcpy(password, buf, strlen(buf)); - printf("password = %s\n", password); if(password == NULL) { fprintf(stderr, "couldn't extract password, exiting...\n");