summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2009-07-01 10:51:17 +0200
committerKarolin Seeger <kseeger@samba.org>2009-07-01 13:38:44 +0200
commit5cc5156fa63febc05d029bd44379ed54330aab24 (patch)
treebfb78edd766c6e299eae4ee10d78f4cb6528c5f7 /lib
parent1e1ae462cdce317292446c0cc95beadb9960c86e (diff)
downloadsamba-5cc5156fa63febc05d029bd44379ed54330aab24.tar.gz
samba-5cc5156fa63febc05d029bd44379ed54330aab24.tar.xz
samba-5cc5156fa63febc05d029bd44379ed54330aab24.zip
lib/util: fix order of includes in tevent_ntstatus.c
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. (cherry picked from commit 5c5f72b6c5e7473cfe42d2d54fd34c6b31cbf6b1)
Diffstat (limited to 'lib')
-rw-r--r--lib/util/tevent_ntstatus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/tevent_ntstatus.c b/lib/util/tevent_ntstatus.c
index 1a34e9c749d..6aa576da666 100644
--- a/lib/util/tevent_ntstatus.c
+++ b/lib/util/tevent_ntstatus.c
@@ -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)
{