Authenticated users should be registered without the "~" mark

This commit is contained in:
Alexander Barton 2010-07-13 23:18:54 +02:00
parent 9cd3494de9
commit 560492a4a4
1 changed files with 3 additions and 2 deletions

View File

@ -853,9 +853,10 @@ cb_Read_Auth_Result(int r_fd, UNUSED short events)
return;
}
if (result == true)
if (result == true) {
Client_SetUser(client, Client_OrigUser(client), true);
(void)Hello_User_PostAuth(client);
else
} else
Reject_Client(client);
}