diff options
Diffstat (limited to 'examples/vpass.c')
-rw-r--r-- | examples/vpass.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/examples/vpass.c b/examples/vpass.c index 9a07ee38..1925dd66 100644 --- a/examples/vpass.c +++ b/examples/vpass.c @@ -1,3 +1,6 @@ + +#include "config.h" + #include <stdlib.h> #include <stdio.h> #include <unistd.h> @@ -5,8 +8,9 @@ #include <sys/types.h> #include <security/pam_appl.h> -static int test_conv(int num_msg, const struct pam_message **msgm, - struct pam_response **response, void *appdata_ptr) +static int +test_conv (int num_msg UNUSED, const struct pam_message **msgm UNUSED, + struct pam_response **response UNUSED, void *appdata_ptr UNUSED) { return 0; } |