When +@all or allcommands is given, we set a reserved bit as well that we * can later test, to see if the user has the right to execute "future commands", * that is, commands loaded later via modules. */
| 386 | * can later test, to see if the user has the right to execute "future commands", |
| 387 | * that is, commands loaded later via modules. */ |
| 388 | int ACLUserCanExecuteFutureCommands(user *u) { |
| 389 | return ACLGetUserCommandBit(u,USER_COMMAND_BITS_COUNT-1); |
| 390 | } |
| 391 | |
| 392 | /* Set the specified command bit for the specified user to 'value' (0 or 1). |
| 393 | * If the bit overflows the user internal representation, no operation |
no test coverage detected