Author: mimir Date: 2006-05-07 13:40:56 +0000 (Sun, 07 May 2006) New Revision: 15490
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=15490 Log: Typo fixes and remove long forgotten commented piece. rafal Modified: branches/SAMBA_4_0/source/utils/net/net.c branches/SAMBA_4_0/source/utils/net/net_vampire.c Changeset: Modified: branches/SAMBA_4_0/source/utils/net/net.c =================================================================== --- branches/SAMBA_4_0/source/utils/net/net.c 2006-05-07 13:39:53 UTC (rev 15489) +++ branches/SAMBA_4_0/source/utils/net/net.c 2006-05-07 13:40:56 UTC (rev 15490) @@ -82,12 +82,7 @@ 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 @@ {"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} }; Modified: branches/SAMBA_4_0/source/utils/net/net_vampire.c =================================================================== --- branches/SAMBA_4_0/source/utils/net/net_vampire.c 2006-05-07 13:39:53 UTC (rev 15489) +++ branches/SAMBA_4_0/source/utils/net/net_vampire.c 2006-05-07 13:40:56 UTC (rev 15490) @@ -175,6 +175,6 @@ int net_samsync_ldb_help(struct net_context *ctx, int argc, const char **argv) { - d_printf("Syncrosnise into the local ldb the SAM of a domain.\n"); + d_printf("Synchronise into the local ldb the SAM of a domain.\n"); return 0; }
