Displaying 1 result from an estimated 1 matches for "_pam_types".
1999 Nov 21
1
openssh 1.2pre13 on Linux/i386 RH4.2 problems
...too many arguments to function `pam_strerror'
sshd.c:231: warning: passing arg 1 of `pam_strerror' makes integer from pointer without a cast
sshd.c:231: too many arguments to function `pam_strerror'
... more of these...
make: *** [sshd.o] Error 1
>From the 4.2 box:
grep pam_strerror _pam_types.h
extern const char *pam_strerror(int errnum);
>From a 5.2 box:
grep pam_strerror _pam_types.h
extern const char *pam_strerror(pam_handle_t *pamh, int errnum);
If I do the obvious patch of just removing the pam_handle parameter in
sshd.c, there are still non-pam warnings, and compilation break...