|
Lines 102-107
allowed_user(struct passwd * pw)
Link Here
|
| 102 |
#endif /* USE_SHADOW */ |
102 |
#endif /* USE_SHADOW */ |
| 103 |
|
103 |
|
| 104 |
/* grab passwd field for locked account check */ |
104 |
/* grab passwd field for locked account check */ |
|
|
105 |
passwd = pw->pw_passwd; |
| 105 |
#ifdef USE_SHADOW |
106 |
#ifdef USE_SHADOW |
| 106 |
if (spw != NULL) |
107 |
if (spw != NULL) |
| 107 |
#if defined(HAVE_LIBIAF) && !defined(BROKEN_LIBIAF) |
108 |
#if defined(HAVE_LIBIAF) && !defined(BROKEN_LIBIAF) |
|
Lines 109-116
allowed_user(struct passwd * pw)
Link Here
|
| 109 |
#else |
110 |
#else |
| 110 |
passwd = spw->sp_pwdp; |
111 |
passwd = spw->sp_pwdp; |
| 111 |
#endif /* HAVE_LIBIAF && !BROKEN_LIBIAF */ |
112 |
#endif /* HAVE_LIBIAF && !BROKEN_LIBIAF */ |
| 112 |
#else |
|
|
| 113 |
passwd = pw->pw_passwd; |
| 114 |
#endif |
113 |
#endif |
| 115 |
|
114 |
|
| 116 |
/* check for locked account */ |
115 |
/* check for locked account */ |