lib/util: fix order of includes in tevent_ntstatus.c
authorMichael Adam <obnox@samba.org>
Wed, 1 Jul 2009 08:51:17 +0000 (10:51 +0200)
committerKarolin Seeger <kseeger@samba.org>
Wed, 1 Jul 2009 11:22:32 +0000 (13:22 +0200)
replace.h needs to be included first.

Michael
(cherry picked from commit 8d982d91f231abbf003473d09433fca2cfa240ac)

Signed-off-by: Michael Adam <obnox@samba.org>
This addresses bug #6521.

util/tevent_ntstatus.c

index 1a34e9c749d4448b0af56cabe79f468ad81c002e..6aa576da666721de30659f1689c7f349e62edecb 100644 (file)
@@ -17,8 +17,8 @@
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#include "tevent_ntstatus.h"
 #include "../replace/replace.h"
+#include "tevent_ntstatus.h"
 
 bool tevent_req_nterror(struct tevent_req *req,        NTSTATUS status)
 {