diff options
author | Jim McDonough <jmcd@samba.org> | 2002-10-18 15:13:15 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2002-10-18 15:13:15 +0000 |
commit | d7d60ddc219383bf1b312c30c2afaed06ea92a2d (patch) | |
tree | 4a75045ede3648cc7210f7b1ab641220604f5132 /source3/torture | |
parent | c53eb2ed540e79d6deae5f41e17febc5bf5dbf57 (diff) | |
download | samba-d7d60ddc219383bf1b312c30c2afaed06ea92a2d.tar.gz samba-d7d60ddc219383bf1b312c30c2afaed06ea92a2d.tar.bz2 samba-d7d60ddc219383bf1b312c30c2afaed06ea92a2d.zip |
Fix build. An extra parm was added to cli_full_connection but not locktest2.c.
(This used to be commit 1e8ca2801e2e588e5fcdbe2b549bfd818d8bad81)
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/locktest2.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/torture/locktest2.c b/source3/torture/locktest2.c index 58817bbd36..c4323ac377 100644 --- a/source3/torture/locktest2.c +++ b/source3/torture/locktest2.c @@ -176,7 +176,8 @@ static struct cli_state *connect_one(char *share) slprintf(myname,sizeof(myname), "lock-%u-%u", getpid(), count++); nt_status = cli_full_connection(&c, myname, server_n, NULL, 0, share, "?????", - username, lp_workgroup(), password, 0); + username, lp_workgroup(), password, 0, + NULL); if (!NT_STATUS_IS_OK(nt_status)) { DEBUG(0, ("cli_full_connection failed with error %s\n", nt_errstr(nt_status))); |