make receive_smb_raw_talloc more readable
authorTim Prouty <tprouty@samba.org>
Tue, 10 Feb 2009 07:43:08 +0000 (23:43 -0800)
committerTim Prouty <tprouty@samba.org>
Mon, 16 Feb 2009 08:29:20 +0000 (00:29 -0800)
source3/smbd/process.c

index 0285d00d3d7fab425b957fb8b52daf433348afb5..18fbdd79394fceff4e0e4827404f99ebf18a065f 100644 (file)
@@ -272,10 +272,10 @@ static NTSTATUS receive_smb_raw_talloc(TALLOC_CTX *mem_ctx, int fd,
                return status;
        }
 
-       if (CVAL(lenbuf,0) == 0 &&
-                       min_recv_size &&
-                       smb_len_large(lenbuf) > (min_recv_size + STANDARD_WRITE_AND_X_HEADER_SIZE) && /* Could be a UNIX large writeX. */
-                       !srv_is_signing_active()) {
+       if (CVAL(lenbuf,0) == 0 && min_recv_size &&
+           (smb_len_large(lenbuf) > /* Could be a UNIX large writeX. */
+               (min_recv_size + STANDARD_WRITE_AND_X_HEADER_SIZE)) &&
+           !srv_is_signing_active()) {
 
                return receive_smb_raw_talloc_partial_read(
                        mem_ctx, lenbuf, fd, buffer, timeout, p_unread, plen);