diff options
| author | David Sommerseth <dazo@users.sourceforge.net> | 2009-09-03 00:13:25 +0200 |
|---|---|---|
| committer | David Sommerseth <dazo@users.sourceforge.net> | 2009-09-03 00:13:25 +0200 |
| commit | 44c8890d4d5524f6667154148afd0aee168a2921 (patch) | |
| tree | 91dfc0efe8dc467a68c043f245eba7982c7b2f38 /utils | |
| parent | 9df4dfbc2ec3932fe7235d58e885fdcaf139fc5f (diff) | |
| download | eurephia-44c8890d4d5524f6667154148afd0aee168a2921.tar.gz eurephia-44c8890d4d5524f6667154148afd0aee168a2921.tar.xz eurephia-44c8890d4d5524f6667154148afd0aee168a2921.zip | |
Added missing privileges in eurephia_init when creating admin user account
Diffstat (limited to 'utils')
| -rw-r--r-- | utils/eurephia_init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/eurephia_init.c b/utils/eurephia_init.c index d47626e..8a3b343 100644 --- a/utils/eurephia_init.c +++ b/utils/eurephia_init.c @@ -211,7 +211,8 @@ int setup_admin_account(eurephiaCTX *ctx) { // Grant all available access levels to the admin account - static char *grants[] = { "config", "useradmin", "certadmin", "fwprofiles", NULL }; + static char *grants[] = { "config", "useradmin", "certadmin", "fwprofiles", + "attempts", "blacklist", NULL }; printf("Granting access to user account:"); |
