]> andersk Git - openssh.git/commitdiff
function prototype and definition consistency cleanup.
authorstevesk <stevesk>
Sat, 14 Oct 2000 15:08:49 +0000 (15:08 +0000)
committerstevesk <stevesk>
Sat, 14 Oct 2000 15:08:49 +0000 (15:08 +0000)
auth-pam.c
auth-pam.h

index 4b772c9cdff7e1a1aebf1ea30a2b5380071e6a93..a9cd459a7355a8503630bedc0b60aa30114124fa 100644 (file)
@@ -249,7 +249,7 @@ void do_pam_session(char *username, const char *ttyname)
 }
 
 /* Set PAM credentials */ 
-void do_pam_setcred()
+void do_pam_setcred(void)
 {
        int pam_retval;
  
@@ -273,7 +273,7 @@ int pam_password_change_required(void)
  * session is established and the user's pty is connected to
  * stdin/stout/stderr.
  */
-void do_pam_chauthtok()
+void do_pam_chauthtok(void)
 {
        int pam_retval;
 
index 7f230463610f203e6ad2e6bfbf4f8a5fc2757a27..73f68ec2d584e26e09b936eb353e970e81ba01e5 100644 (file)
@@ -9,9 +9,9 @@ int auth_pam_password(struct passwd *pw, const char *password);
 char **fetch_pam_environment(void);
 int do_pam_account(char *username, char *remote_user);
 void do_pam_session(char *username, const char *ttyname);
-void do_pam_setcred();
+void do_pam_setcred(void);
 void print_pam_messages(void);
 int pam_password_change_required(void);
-void do_pam_chauthtok();
+void do_pam_chauthtok(void);
 
 #endif /* USE_PAM */
This page took 0.040166 seconds and 5 git commands to generate.