View | Details | Raw Unified | Return to bug 275261 | Differences between
and this patch

Collapse All | Expand All

(-)etc/uams/uams_pam.c (-2 / +2 lines)
Lines 53-65 extern UAM_MODULE_EXPORT void append(struct papfile *, Link Here
53
 * echo off means password.
53
 * echo off means password.
54
 */
54
 */
55
static int PAM_conv (int num_msg,
55
static int PAM_conv (int num_msg,
56
#ifdef LINUX
56
#if defined(LINUX) || (defined(FREEBSD) && __FreeBSD_version >= 1400000)
57
                     const struct pam_message **msg,
57
                     const struct pam_message **msg,
58
#else
58
#else
59
                     struct pam_message **msg,
59
                     struct pam_message **msg,
60
#endif
60
#endif
61
                     struct pam_response **resp,
61
                     struct pam_response **resp,
62
                     void *appdata_ptr _U_) 
62
                     void *appdata_ptr _U_)
63
{
63
{
64
  struct pam_response *reply;
64
  struct pam_response *reply;
65
  int count;
65
  int count;

Return to bug 275261