diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-04-29 12:41:45 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-04-29 16:38:14 +1000 |
commit | 209d47c100bf59f15519c4c82089285210041c2e (patch) | |
tree | efd9d65fe36a8c34b034800de32085290bb0be33 /source4/smb_server/smb | |
parent | 6021af4fd38d2a712dca42a3cacf8537007fd160 (diff) | |
download | samba-209d47c100bf59f15519c4c82089285210041c2e.tar.gz samba-209d47c100bf59f15519c4c82089285210041c2e.tar.bz2 samba-209d47c100bf59f15519c4c82089285210041c2e.zip |
s4-param Rename lock_path() -> lpcfg_lock_path()
This avoids a conflict with the source3/ lock_path()
Diffstat (limited to 'source4/smb_server/smb')
-rw-r--r-- | source4/smb_server/smb/negprot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/smb_server/smb/negprot.c b/source4/smb_server/smb/negprot.c index 656da4df20..2466a60705 100644 --- a/source4/smb_server/smb/negprot.c +++ b/source4/smb_server/smb/negprot.c @@ -278,7 +278,7 @@ static void reply_nt1(struct smbsrv_request *req, uint16_t choice) capabilities |= CAP_LARGE_READX | CAP_LARGE_WRITEX | CAP_W2K_SMBS; } - large_test_path = lock_path(req, req->smb_conn->lp_ctx, "large_test.dat"); + large_test_path = lpcfg_lock_path(req, req->smb_conn->lp_ctx, "large_test.dat"); if (large_file_support(large_test_path)) { capabilities |= CAP_LARGE_FILES; } |