diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-06-21 23:35:12 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-06-21 23:35:12 +0000 |
commit | 4830a878455fe0e525aa3bd2a59e55d1f30bddad (patch) | |
tree | 39814a0f241692f7ecf98f4a3abb6a7449d709c5 | |
parent | cc59bbfdea6f30b8dc8f1fc14353d15f02816aa3 (diff) | |
download | samba-4830a878455fe0e525aa3bd2a59e55d1f30bddad.tar.gz |
(fixing bug in my last commit)
This isn't C++ - start your code *after* all the variables are declared...
Andrew Bartlett
(This used to be commit b7760faedc2181538ffc325e727808e6df8f943f)
-rw-r--r-- | source3/utils/net_groupmap.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/utils/net_groupmap.c b/source3/utils/net_groupmap.c index c9c37a68c27..590a005e176 100644 --- a/source3/utils/net_groupmap.c +++ b/source3/utils/net_groupmap.c @@ -486,12 +486,6 @@ int net_help_groupmap(int argc, const char **argv) **********************************************************/ int net_groupmap(int argc, const char **argv) { - /* we shouldn't have silly checks like this */ - if (getuid() != 0) { - d_printf("You must be root to edit group mappings.\nExiting...\n"); - return -1; - } - struct functable func[] = { {"add", net_groupmap_add}, {"modify", net_groupmap_modify}, @@ -501,6 +495,12 @@ int net_groupmap(int argc, const char **argv) {NULL, NULL} }; + /* we shouldn't have silly checks like this */ + if (getuid() != 0) { + d_printf("You must be root to edit group mappings.\nExiting...\n"); + return -1; + } + return net_run_function(argc, argv, func, net_help_groupmap); if ( 0 == argc ) return net_help_groupmap( argc, argv ); |