diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-09-29 04:42:29 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-09-29 04:42:29 +0000 |
commit | 941d82bf8060e1ca05c6744572a2e562c69b0b11 (patch) | |
tree | 02135dde9d1138f5480fae0cba41be588534e7ec | |
parent | 3f35a785b1afc97caae2ea24ff406e5f967b27e8 (diff) | |
download | samba-941d82bf8060e1ca05c6744572a2e562c69b0b11.tar.gz samba-941d82bf8060e1ca05c6744572a2e562c69b0b11.tar.bz2 samba-941d82bf8060e1ca05c6744572a2e562c69b0b11.zip |
fixed a harmess mixup of bitops and a boolean
(This used to be commit 0e0f3dc577ceab540be6505a86697b14a2136b9f)
-rw-r--r-- | source3/smbd/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 8624bdb9b4..96a43b48c8 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -4025,7 +4025,7 @@ int reply_lockingX(connection_struct *conn, char *inbuf,char *outbuf,int length, char *data; uint32 ecode=0, dummy2; int eclass=0, dummy1; - BOOL large_file_format = (locktype & LOCKING_ANDX_LARGE_FILES); + BOOL large_file_format = (locktype & LOCKING_ANDX_LARGE_FILES)?True:False; BOOL err; CHECK_FSP(fsp,conn); |