s3: Tune if-conditions in a very hot codepath
authorVolker Lendecke <vl@samba.org>
Sun, 15 Nov 2009 21:22:38 +0000 (22:22 +0100)
committerVolker Lendecke <vl@samba.org>
Sat, 21 Nov 2009 11:15:39 +0000 (12:15 +0100)
commit5a1606269aeeeb1b777974d88c33df543d1b6f4d
treea86e92477f702d426bcf00c2f299692addc444b1
parent91ccaa87da9a5f8148636b0771fe1c67317187d3
s3: Tune if-conditions in a very hot codepath

This looks innocent, but it is visible in a netbench run.  Due to boolean
short-circuiting we don't have to execute the conditions on the right-hand side
of the &&. So putting the less likely condition left gains a bit.
source3/smbd/reply.c