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 | 0e0f3dc577ceab540be6505a86697b14a2136b9f (patch) | |
tree | c280567fcd29810140e28768990be2d2e92fd2ce /source/smbd/reply.c | |
parent | 91f0a3cc2f59a49f6ce8550e7d07b9b01e0b285f (diff) | |
download | samba-0e0f3dc577ceab540be6505a86697b14a2136b9f.tar.gz samba-0e0f3dc577ceab540be6505a86697b14a2136b9f.tar.xz samba-0e0f3dc577ceab540be6505a86697b14a2136b9f.zip |
fixed a harmess mixup of bitops and a boolean
Diffstat (limited to 'source/smbd/reply.c')
-rw-r--r-- | source/smbd/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/reply.c b/source/smbd/reply.c index 8624bdb9b4a..96a43b48c82 100644 --- a/source/smbd/reply.c +++ b/source/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); |