[Date Prev][Date Next] [Chronological] [Thread] [Top]

Multiple password support (ITS#464)



Full_Name: Tim Burgess
Version: 1.2.9
OS: FreeBSD 3.4
URL: 
Submission from: (NULL) (128.250.2.66)


It seems that with multiple crypted userpassword values in a single attribute,
only the first one is checked against when doing a bind on the ldbm backend.

This can be fixed in back-ldbm/bind.c by changing:
circa line 48:

< return result;

into

> if (result == 0) {
>   return 0;
> }

This fixes the problem - not sure whether it was a problem but it sure makes
things more convenient for me!

Cheers,

Tim