diff options
author | Jeremy Allison <jra@samba.org> | 2002-09-11 00:50:13 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-09-11 00:50:13 +0000 |
commit | 6b956c8c1e55723788ede2cf9307456b38165a3b (patch) | |
tree | fc71188717c36962f2cea9a6b17efaa41fa1ca71 /source3/smbd/reply.c | |
parent | 1bc851e3146627324734fc62e3ce13e680ae48ae (diff) | |
download | samba-6b956c8c1e55723788ede2cf9307456b38165a3b.tar.gz samba-6b956c8c1e55723788ede2cf9307456b38165a3b.tar.bz2 samba-6b956c8c1e55723788ede2cf9307456b38165a3b.zip |
Fix missing braces around push lock call.
Jeremy.
(This used to be commit c93b40f43d5f5027f26c9b6bb906011a9075db2d)
Diffstat (limited to 'source3/smbd/reply.c')
-rw-r--r-- | source3/smbd/reply.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 2b361fd43a..36f7c3a883 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -1609,9 +1609,10 @@ int reply_lockread(connection_struct *conn, char *inbuf,char *outbuf, int length * this smb into a queued request and push it * onto the blocking lock queue. */ - if(push_blocking_lock_request(inbuf, length, -1, 0)) + if(push_blocking_lock_request(inbuf, length, -1, 0)) { END_PROFILE(SMBlockread); - return -1; + return -1; + } } END_PROFILE(SMBlockread); return ERROR_NT(status); |