Initialize the default user, that will always exist for all the process * lifetime. */
| 1043 | /* Initialize the default user, that will always exist for all the process |
| 1044 | * lifetime. */ |
| 1045 | void ACLInitDefaultUser(void) { |
| 1046 | DefaultUser = ACLCreateUser("default",7); |
| 1047 | ACLSetUser(DefaultUser,"+@all",-1); |
| 1048 | ACLSetUser(DefaultUser,"~*",-1); |
| 1049 | ACLSetUser(DefaultUser,"&*",-1); |
| 1050 | ACLSetUser(DefaultUser,"on",-1); |
| 1051 | ACLSetUser(DefaultUser,"nopass",-1); |
| 1052 | } |
| 1053 | |
| 1054 | /* Initialization of the ACL subsystem. */ |
| 1055 | void ACLInit(void) { |
no test coverage detected