aboutsummaryrefslogtreecommitdiff
path: root/lib/getpass.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/getpass.h')
-rw-r--r--lib/getpass.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/getpass.h b/lib/getpass.h
index 91abe2214..1248030ee 100644
--- a/lib/getpass.h
+++ b/lib/getpass.h
@@ -1 +1,8 @@
-void my_getpass(const char *prompt, char* buffer, int buflen );
+#ifndef __GETPASS_H
+#define __GETPASS_H
+/*
+ * Returning non-zero will abort the continued operation!
+ */
+int my_getpass(void *client, char *prompt, char* buffer, int buflen );
+
+#endif