diff options
author | Kai Blin <kai@samba.org> | 2008-06-21 00:07:21 +0200 |
---|---|---|
committer | Kai Blin <kai@samba.org> | 2008-06-21 00:07:21 +0200 |
commit | accc68f63e91e8684d7186fa718bd51e2e4e8922 (patch) | |
tree | 054c3ae1650b51a93032bdf14bd9d1a1381d1973 /source3/utils/net_util.c | |
parent | c4d6ca41d919cfec11b0f05e8b2f3bffbfadefcc (diff) | |
download | samba-accc68f63e91e8684d7186fa718bd51e2e4e8922.tar.gz samba-accc68f63e91e8684d7186fa718bd51e2e4e8922.tar.xz samba-accc68f63e91e8684d7186fa718bd51e2e4e8922.zip |
net: Don't crash on invalid command line options.
This backs out the workaround Jerry added in
4c3bfea9f8d238f9100eaa264b9b2941dff5a6dd.
Thanks for the catch.
(This used to be commit 20e0bb4800938863cb0aac1a19473748132043fc)
Diffstat (limited to 'source3/utils/net_util.c')
-rw-r--r-- | source3/utils/net_util.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/source3/utils/net_util.c b/source3/utils/net_util.c index 8938b9cf01..ae1d4ea2b6 100644 --- a/source3/utils/net_util.c +++ b/source3/utils/net_util.c @@ -551,13 +551,6 @@ int net_run_function(struct net_context *c, int argc, const char **argv, { int i; - if (!table) { - d_fprintf(stderr, "Invalid command. Run \"%s\" for more details.\n", - whoami); - return 1; - } - - if (argc != 0) { for (i=0; table[i].funcname != NULL; i++) { if (StrCaseCmp(argv[0], table[i].funcname) == 0) |