Hi,
Alan Buxey wrote:
hmmm. latest GIT doesnt get far when running....it just appears to lock/freeze up after initiaing the SQL module and importing the list of clients - this is with postgreSQL .
Hmm... it could be the changes I made to minimize the size of the VALUE_PAIR structure. The previous code made certain... odd... assumptions that may no longer be true. I may have missed one or two places where it still does something odd.
Maybe reverting change b14fc9d3d9781186 might help.
being naive here, git revert -n b14fc9d3d9781186 ?? doesnt seem to change anything. by the way, realms.c line 1634 if (!auth_pool || auth_pool_name && (strcmp(auth_pool_name, acct_pool_name) != 0) ) { do_print = TRUE; } assume that should read: if (!auth_pool || (auth_pool_name && (strcmp(auth_pool_name, acct_pool_name) != 0) )) { do_print = TRUE; } ? alan