summaryrefslogtreecommitdiff
path: root/checkpasswd
diff options
context:
space:
mode:
authorJohn Denker <jsd@av8n.com>2012-06-03 00:43:55 -0700
committerJohn Denker <jsd@av8n.com>2012-07-13 18:39:07 -0700
commit3cfa63750d7e82e0e4b94f7f7b67639bdbd016af (patch)
treefdf27377b7ff99d5eed7db39149639400f73de3d /checkpasswd
parent901d0f9826229478c4dae4a99c750e148c00ca95 (diff)
optional debugging features in checkpassword
Diffstat (limited to 'checkpasswd')
-rw-r--r--checkpasswd/checkpassword.c9
-rw-r--r--checkpasswd/exit.h2
2 files changed, 10 insertions, 1 deletions
diff --git a/checkpasswd/checkpassword.c b/checkpasswd/checkpassword.c
index 7e5ee18..6056525 100644
--- a/checkpasswd/checkpassword.c
+++ b/checkpasswd/checkpassword.c
@@ -19,6 +19,10 @@ static struct spwd *spw;
static struct userpw *upw;
#endif
+#ifdef NASTY_DEBUG
+# include <stdio.h>
+#endif
+
static char up[513];
static int uplen;
@@ -57,6 +61,11 @@ main(int argc,char **argv)
if (i >= uplen) _exit(2);
while (up[i++]) if (i >= uplen) _exit(2);
+#ifdef NASTY_DEBUG
+ fprintf(stderr, "checkpassw called with '%s' '%s'\n",
+ login, password);
+#endif
+
pw = getpwnam(login);
if (pw)
stored = pw->pw_passwd;
diff --git a/checkpasswd/exit.h b/checkpasswd/exit.h
index 39011c8..614f9d1 100644
--- a/checkpasswd/exit.h
+++ b/checkpasswd/exit.h
@@ -1,6 +1,6 @@
#ifndef EXIT_H
#define EXIT_H
-extern void _exit();
+extern void _exit(int);
#endif