summaryrefslogtreecommitdiff
path: root/source3/utils
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1999-05-07 18:20:59 +0000
committerLuke Leighton <lkcl@samba.org>1999-05-07 18:20:59 +0000
commit94a4094f444ba7433dbf812b1252d964adfa6916 (patch)
tree8de08ee147b9c9d17bc5545587fff563c663ea86 /source3/utils
parent798fdf4fd838cd361968debb56aaba2006f5bed1 (diff)
downloadsamba-94a4094f444ba7433dbf812b1252d964adfa6916.tar.gz
samba-94a4094f444ba7433dbf812b1252d964adfa6916.tar.bz2
samba-94a4094f444ba7433dbf812b1252d964adfa6916.zip
had to move day display names into lib/util, to get rpctorture to compile.
(This used to be commit 8c80742e4e5604bc667314e51c47924efd65df49)
Diffstat (limited to 'source3/utils')
-rw-r--r--source3/utils/rpctorture.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/source3/utils/rpctorture.c b/source3/utils/rpctorture.c
index 831af55e0f..86729c3d10 100644
--- a/source3/utils/rpctorture.c
+++ b/source3/utils/rpctorture.c
@@ -556,8 +556,8 @@ static void run_pipegobble(int numops, struct client_info *cli_info, char *pipe_
static void run_handles(int numops, struct client_info *cli_info)
{
- run_samhandles(numops, cli_info);
run_lsahandles(numops, cli_info);
+ run_samhandles(numops, cli_info);
}
static void run_pipegobbler(int numops, struct client_info *cli_info)
@@ -634,6 +634,8 @@ static void usage(char *pname)
fprintf(out_hnd, "\t-U username set the network username\n");
fprintf(out_hnd, "\t-W workgroup set the workgroup name\n");
fprintf(out_hnd, "\t-t terminal code terminal i/o code {sjis|euc|jis7|jis8|junet|hex}\n");
+ fprintf(out_hnd, "\t-N processes number of processes\n");
+ fprintf(out_hnd, "\t-o operations number of operations\n");
fprintf(out_hnd, "\n");
}
@@ -956,12 +958,12 @@ enum client_action
}
*/
- create_procs(nprocs, numops, &cli_info, run_randomrpc);
/*
+ create_procs(nprocs, numops, &cli_info, run_randomrpc);
create_procs(nprocs, numops, &cli_info, run_pipegobbler);
create_procs(nprocs, numops, &cli_info, run_tcpconnect);
- create_procs(nprocs, numops, &cli_info, run_handles);
*/
+ create_procs(nprocs, numops, &cli_info, run_handles);
fflush(out_hnd);