diff options
author | Andreas Schneider <asn@samba.org> | 2011-08-03 12:13:56 +0200 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2011-08-21 09:05:02 -0400 |
commit | ea3fa586e7af13202cc5cc0737cb501c8fb81d79 (patch) | |
tree | 6504b076479ab6d2b8f572797831987f37141fcc | |
parent | 9fa8f27ed848b86778880da1ae13b4c4daef87a8 (diff) | |
download | samba-ea3fa586e7af13202cc5cc0737cb501c8fb81d79.tar.gz samba-ea3fa586e7af13202cc5cc0737cb501c8fb81d79.tar.bz2 samba-ea3fa586e7af13202cc5cc0737cb501c8fb81d79.zip |
s3-rpc_server: Fix include order in srv_pipe_hnd.c.
Signed-off-by: Andreas Schneider <asn@samba.org>
Signed-off-by: Simo Sorce <idra@samba.org>
-rw-r--r-- | source3/rpc_server/srv_pipe_hnd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_server/srv_pipe_hnd.c b/source3/rpc_server/srv_pipe_hnd.c index dc01335b99..3990ae9bcd 100644 --- a/source3/rpc_server/srv_pipe_hnd.c +++ b/source3/rpc_server/srv_pipe_hnd.c @@ -20,13 +20,13 @@ */ #include "includes.h" -#include "rpc_server.h" #include "fake_file.h" #include "rpc_dce.h" #include "ntdomain.h" #include "rpc_server/rpc_ncacn_np.h" #include "rpc_server/srv_pipe_hnd.h" #include "rpc_server/srv_pipe.h" +#include "rpc_server/rpc_server.h" #include "../lib/tsocket/tsocket.h" #include "../lib/util/tevent_ntstatus.h" |