diff options
author | Jim McDonough <jmcd@samba.org> | 2002-10-18 15:09:17 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2002-10-18 15:09:17 +0000 |
commit | 6ed415f4f5d7b6e65ffa7c91431e3551b397284a (patch) | |
tree | ae0d82a921a1fa61c4189969296d644d1213d003 | |
parent | 389a16d9d5331ddc7ae61d3d4ef3a4ee48734d4b (diff) | |
download | samba-6ed415f4f5d7b6e65ffa7c91431e3551b397284a.tar.gz samba-6ed415f4f5d7b6e65ffa7c91431e3551b397284a.tar.bz2 samba-6ed415f4f5d7b6e65ffa7c91431e3551b397284a.zip |
Fix build. Extra parm was added to cli_full_connection, but not in locktest2.c.
(This used to be commit 51e0f5c2dd469c59a41822dbda293e59794a7dc4)
-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))); |