Initialize the default user, that will always exist for all the process * lifetime. */
| 1052 | /* Initialize the default user, that will always exist for all the process |
| 1053 | * lifetime. */ |
| 1054 | void ACLInitDefaultUser(void) { |
| 1055 | DefaultUser = ACLCreateUser("default",7); |
| 1056 | ACLSetUser(DefaultUser,"+@all",-1); |
| 1057 | ACLSetUser(DefaultUser,"~*",-1); |
| 1058 | ACLSetUser(DefaultUser,"&*",-1); |
| 1059 | ACLSetUser(DefaultUser,"on",-1); |
| 1060 | ACLSetUser(DefaultUser,"nopass",-1); |
| 1061 | } |
| 1062 | |
| 1063 | /* Initialization of the ACL subsystem. */ |
| 1064 | void ACLInit(void) { |
no test coverage detected