s3/rpc_client: fix overly long lines
authorRalph Boehme <slow@samba.org>
Fri, 1 Dec 2017 06:58:07 +0000 (07:58 +0100)
committerRalph Boehme <slow@samba.org>
Sat, 13 Jan 2018 07:24:08 +0000 (08:24 +0100)
Just long lines cleanup, no further changes. Best viewed with git show -w.

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
source3/rpc_client/cli_netlogon.h

index da562e056d3ff2152deb76046d98316e209f9ffc..db8eb5020299bc76a24cf0e8b967010eaac22c92 100644 (file)
@@ -59,30 +59,32 @@ NTSTATUS rpccli_connect_netlogon(
        bool force_reauth,
        struct cli_credentials *trust_creds,
        struct rpc_pipe_client **_rpccli);
-NTSTATUS rpccli_netlogon_password_logon(struct netlogon_creds_cli_context *creds,
-                                       struct dcerpc_binding_handle *binding_handle,
-                                       TALLOC_CTX *mem_ctx,
-                                       uint32_t logon_parameters,
-                                       const char *domain,
-                                       const char *username,
-                                       const char *password,
-                                       const char *workstation,
-                                       enum netr_LogonInfoClass logon_type,
-                                       uint8_t *authoritative,
-                                       uint32_t *flags,
-                                       struct netr_SamInfo3 **info3);
-NTSTATUS rpccli_netlogon_network_logon(struct netlogon_creds_cli_context *creds,
-                                      struct dcerpc_binding_handle *binding_handle,
-                                      TALLOC_CTX *mem_ctx,
-                                      uint32_t logon_parameters,
-                                      const char *username,
-                                      const char *domain,
-                                      const char *workstation,
-                                      const uint8_t chal[8],
-                                      DATA_BLOB lm_response,
-                                      DATA_BLOB nt_response,
-                                      uint8_t *authoritative,
-                                      uint32_t *flags,
-                                      struct netr_SamInfo3 **info3);
+NTSTATUS rpccli_netlogon_password_logon(
+       struct netlogon_creds_cli_context *creds,
+       struct dcerpc_binding_handle *binding_handle,
+       TALLOC_CTX *mem_ctx,
+       uint32_t logon_parameters,
+       const char *domain,
+       const char *username,
+       const char *password,
+       const char *workstation,
+       enum netr_LogonInfoClass logon_type,
+       uint8_t *authoritative,
+       uint32_t *flags,
+       struct netr_SamInfo3 **info3);
+NTSTATUS rpccli_netlogon_network_logon(
+       struct netlogon_creds_cli_context *creds,
+       struct dcerpc_binding_handle *binding_handle,
+       TALLOC_CTX *mem_ctx,
+       uint32_t logon_parameters,
+       const char *username,
+       const char *domain,
+       const char *workstation,
+       const uint8_t chal[8],
+       DATA_BLOB lm_response,
+       DATA_BLOB nt_response,
+       uint8_t *authoritative,
+       uint32_t *flags,
+       struct netr_SamInfo3 **info3);
 
 #endif /* _RPC_CLIENT_CLI_NETLOGON_H_ */