diff options
Diffstat (limited to 'source3/librpc')
-rw-r--r-- | source3/librpc/crypto/cli_spnego.c (renamed from source3/librpc/rpc/dcerpc_spnego.c) | 3 | ||||
-rw-r--r-- | source3/librpc/crypto/spnego.h (renamed from source3/librpc/rpc/dcerpc_spnego.h) | 6 | ||||
-rw-r--r-- | source3/librpc/rpc/dcerpc_helpers.c | 2 |
3 files changed, 5 insertions, 6 deletions
diff --git a/source3/librpc/rpc/dcerpc_spnego.c b/source3/librpc/crypto/cli_spnego.c index 89baa03cf3..04a0922197 100644 --- a/source3/librpc/rpc/dcerpc_spnego.c +++ b/source3/librpc/crypto/cli_spnego.c @@ -22,7 +22,7 @@ #include "include/ntlmssp_wrap.h" #include "librpc/gen_ndr/ntlmssp.h" #include "librpc/crypto/gse.h" -#include "dcerpc_spnego.h" +#include "librpc/crypto/spnego.h" struct spnego_context { enum spnego_mech mech; @@ -367,4 +367,3 @@ DATA_BLOB spnego_get_session_key(TALLOC_CTX *mem_ctx, return data_blob_null; } } - diff --git a/source3/librpc/rpc/dcerpc_spnego.h b/source3/librpc/crypto/spnego.h index d4e7c62786..e2a00b6ef6 100644 --- a/source3/librpc/rpc/dcerpc_spnego.h +++ b/source3/librpc/crypto/spnego.h @@ -17,8 +17,8 @@ * along with this program; if not, see <http://www.gnu.org/licenses/>. */ -#ifndef _DCERPC_SPNEGO_H_ -#define _DCERPC_SPENGO_H_ +#ifndef _CLI_SPNEGO_H_ +#define _CLI_SPENGO_H_ struct spnego_context; @@ -58,4 +58,4 @@ NTSTATUS spnego_get_negotiated_mech(struct spnego_context *sp_ctx, DATA_BLOB spnego_get_session_key(TALLOC_CTX *mem_ctx, struct spnego_context *sp_ctx); -#endif /* _DCERPC_SPENGO_H_ */ +#endif /* _CLI_SPENGO_H_ */ diff --git a/source3/librpc/rpc/dcerpc_helpers.c b/source3/librpc/rpc/dcerpc_helpers.c index fd51ca253e..870706bcbe 100644 --- a/source3/librpc/rpc/dcerpc_helpers.c +++ b/source3/librpc/rpc/dcerpc_helpers.c @@ -27,7 +27,7 @@ #include "../libcli/auth/ntlmssp.h" #include "ntlmssp_wrap.h" #include "librpc/crypto/gse.h" -#include "librpc/rpc/dcerpc_spnego.h" +#include "librpc/crypto/spnego.h" #undef DBGC_CLASS #define DBGC_CLASS DBGC_RPC_PARSE |