Initialization of the ACL subsystem. */
| 1062 | |
| 1063 | /* Initialization of the ACL subsystem. */ |
| 1064 | void ACLInit(void) { |
| 1065 | Users = raxNew(); |
| 1066 | UsersToLoad = listCreate(); |
| 1067 | ACLLog = listCreate(); |
| 1068 | ACLInitDefaultUser(); |
| 1069 | } |
| 1070 | |
| 1071 | /* Check the username and password pair and return C_OK if they are valid, |
| 1072 | * otherwise C_ERR is returned and errno is set to: |
no test coverage detected