summaryrefslogtreecommitdiff
path: root/source4/utils/net/net.c
diff options
context:
space:
mode:
authorRafal Szczesniak <mimir@samba.org>2006-05-07 13:40:56 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:05:41 -0500
commitece95aad3da31809369e8867493bffb5cb749993 (patch)
tree1dad335852c48881188424c9e9de1c8526973e4f /source4/utils/net/net.c
parent4010a61fd85211bdee37874bf0bc27040ad70fff (diff)
downloadsamba-ece95aad3da31809369e8867493bffb5cb749993.tar.gz
samba-ece95aad3da31809369e8867493bffb5cb749993.tar.bz2
samba-ece95aad3da31809369e8867493bffb5cb749993.zip
r15490: Typo fixes and remove long forgotten commented piece.
rafal (This used to be commit a2f6dc786031aa368b0398c21baf18cf82375c46)
Diffstat (limited to 'source4/utils/net/net.c')
-rw-r--r--source4/utils/net/net.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/source4/utils/net/net.c b/source4/utils/net/net.c
index a6015f7c34..f2223a03a3 100644
--- a/source4/utils/net/net.c
+++ b/source4/utils/net/net.c
@@ -82,12 +82,7 @@ int net_run_usage(struct net_context *ctx,
const struct net_functable *functable)
{
int i;
-/*
- if (argc < 1) {
- d_printf("net_run_usage: TODO (argc < 1)\n");
- return 1;
- }
-*/
+
for (i=0; functable[i].name; i++) {
if (strcasecmp_m(argv[0], functable[i].name) == 0)
if (functable[i].usage) {
@@ -107,7 +102,7 @@ static const struct net_functable net_functable[] = {
{"time", "get remote server's time\n", net_time, net_time_usage},
{"join", "join a domain\n", net_join, net_join_usage},
{"samdump", "dump the sam of a domain\n", net_samdump, net_samdump_usage},
- {"samsync", "syncrosnise into the local ldb the sam of a domain\n", net_samsync_ldb, net_samsync_ldb_usage},
+ {"samsync", "synchronise into the local ldb the sam of a domain\n", net_samsync_ldb, net_samsync_ldb_usage},
{"user", "manage user accounts\n", net_user, net_user_usage},
{NULL, NULL, NULL, NULL}
};