The branch, v3-2-test has been updated
       via  3d34c87612138e4457e824e1a6e3981d1c3fe238 (commit)
      from  f93fc818143a7442a6e8a90f16f60c536a5b8f9e (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-2-test


- Log -----------------------------------------------------------------
commit 3d34c87612138e4457e824e1a6e3981d1c3fe238
Author: Günther Deschner <[EMAIL PROTECTED]>
Date:   Wed Jan 9 11:59:11 2008 +0100

    Re-run make idl. The pidl generated code now fully complies to coding 
standards.
    
    Guenther

-----------------------------------------------------------------------

Summary of changes:
 source/librpc/gen_ndr/cli_dfs.c          |  448 +++++++--
 source/librpc/gen_ndr/cli_dfs.h          |  149 +++-
 source/librpc/gen_ndr/cli_echo.c         |  179 +++-
 source/librpc/gen_ndr/cli_echo.h         |   49 +-
 source/librpc/gen_ndr/cli_epmapper.c     |  152 +++-
 source/librpc/gen_ndr/cli_epmapper.h     |   48 +-
 source/librpc/gen_ndr/cli_eventlog.c     |  403 ++++++--
 source/librpc/gen_ndr/cli_eventlog.h     |   91 ++-
 source/librpc/gen_ndr/cli_initshutdown.c |   63 +-
 source/librpc/gen_ndr/cli_initshutdown.h |   24 +-
 source/librpc/gen_ndr/cli_lsa.c          | 1495 +++++++++++++++++++++++-------
 source/librpc/gen_ndr/cli_lsa.h          |  429 +++++++--
 source/librpc/gen_ndr/cli_netlogon.c     |  966 ++++++++++++++++----
 source/librpc/gen_ndr/cli_netlogon.h     |  355 ++++++-
 source/librpc/gen_ndr/cli_srvsvc.c       | 1104 ++++++++++++++++++-----
 source/librpc/gen_ndr/cli_srvsvc.h       |  402 +++++++--
 source/librpc/gen_ndr/cli_svcctl.c       |  939 +++++++++++++++----
 source/librpc/gen_ndr/cli_svcctl.h       |  367 +++++++-
 source/librpc/gen_ndr/cli_unixinfo.c     |   91 ++-
 source/librpc/gen_ndr/cli_unixinfo.h     |   26 +-
 source/librpc/gen_ndr/cli_winreg.c       |  715 ++++++++++++---
 source/librpc/gen_ndr/cli_winreg.h       |  260 +++++-
 source/librpc/gen_ndr/cli_wkssvc.c       |  660 +++++++++++---
 source/librpc/gen_ndr/cli_wkssvc.h       |  257 +++++-
 24 files changed, 7842 insertions(+), 1830 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/librpc/gen_ndr/cli_dfs.c b/source/librpc/gen_ndr/cli_dfs.c
index 1cd085e..9078ce7 100644
--- a/source/librpc/gen_ndr/cli_dfs.c
+++ b/source/librpc/gen_ndr/cli_dfs.c
@@ -6,24 +6,33 @@
 #include "includes.h"
 #include "librpc/gen_ndr/cli_dfs.h"
 
-NTSTATUS rpccli_dfs_GetManagerVersion(struct rpc_pipe_client *cli, TALLOC_CTX 
*mem_ctx, enum dfs_ManagerVersion *version)
+NTSTATUS rpccli_dfs_GetManagerVersion(struct rpc_pipe_client *cli,
+                                     TALLOC_CTX *mem_ctx,
+                                     enum dfs_ManagerVersion *version)
 {
        struct dfs_GetManagerVersion r;
        NTSTATUS status;
 
        /* In parameters */
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_IN_DEBUG(dfs_GetManagerVersion, &r);
+       }
 
-       status = cli_do_rpc_ndr(cli, mem_ctx, PI_NETDFS, &ndr_table_netdfs, 
NDR_DFS_GETMANAGERVERSION, &r);
+       status = cli_do_rpc_ndr(cli,
+                               mem_ctx,
+                               PI_NETDFS,
+                               &ndr_table_netdfs,
+                               NDR_DFS_GETMANAGERVERSION,
+                               &r);
 
        if (!NT_STATUS_IS_OK(status)) {
                return status;
        }
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_OUT_DEBUG(dfs_GetManagerVersion, &r);
+       }
 
        if (NT_STATUS_IS_ERR(status)) {
                return status;
@@ -36,7 +45,14 @@ NTSTATUS rpccli_dfs_GetManagerVersion(struct rpc_pipe_client 
*cli, TALLOC_CTX *m
        return NT_STATUS_OK;
 }
 
-NTSTATUS rpccli_dfs_Add(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, 
const char *path, const char *server, const char *share, const char *comment, 
uint32_t flags, WERROR *werror)
+NTSTATUS rpccli_dfs_Add(struct rpc_pipe_client *cli,
+                       TALLOC_CTX *mem_ctx,
+                       const char *path,
+                       const char *server,
+                       const char *share,
+                       const char *comment,
+                       uint32_t flags,
+                       WERROR *werror)
 {
        struct dfs_Add r;
        NTSTATUS status;
@@ -48,17 +64,24 @@ NTSTATUS rpccli_dfs_Add(struct rpc_pipe_client *cli, 
TALLOC_CTX *mem_ctx, const
        r.in.comment = comment;
        r.in.flags = flags;
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_IN_DEBUG(dfs_Add, &r);
+       }
 
-       status = cli_do_rpc_ndr(cli, mem_ctx, PI_NETDFS, &ndr_table_netdfs, 
NDR_DFS_ADD, &r);
+       status = cli_do_rpc_ndr(cli,
+                               mem_ctx,
+                               PI_NETDFS,
+                               &ndr_table_netdfs,
+                               NDR_DFS_ADD,
+                               &r);
 
        if (!NT_STATUS_IS_OK(status)) {
                return status;
        }
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_OUT_DEBUG(dfs_Add, &r);
+       }
 
        if (NT_STATUS_IS_ERR(status)) {
                return status;
@@ -74,7 +97,12 @@ NTSTATUS rpccli_dfs_Add(struct rpc_pipe_client *cli, 
TALLOC_CTX *mem_ctx, const
        return werror_to_ntstatus(r.out.result);
 }
 
-NTSTATUS rpccli_dfs_Remove(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, 
const char *dfs_entry_path, const char *servername, const char *sharename, 
WERROR *werror)
+NTSTATUS rpccli_dfs_Remove(struct rpc_pipe_client *cli,
+                          TALLOC_CTX *mem_ctx,
+                          const char *dfs_entry_path,
+                          const char *servername,
+                          const char *sharename,
+                          WERROR *werror)
 {
        struct dfs_Remove r;
        NTSTATUS status;
@@ -84,17 +112,24 @@ NTSTATUS rpccli_dfs_Remove(struct rpc_pipe_client *cli, 
TALLOC_CTX *mem_ctx, con
        r.in.servername = servername;
        r.in.sharename = sharename;
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_IN_DEBUG(dfs_Remove, &r);
+       }
 
-       status = cli_do_rpc_ndr(cli, mem_ctx, PI_NETDFS, &ndr_table_netdfs, 
NDR_DFS_REMOVE, &r);
+       status = cli_do_rpc_ndr(cli,
+                               mem_ctx,
+                               PI_NETDFS,
+                               &ndr_table_netdfs,
+                               NDR_DFS_REMOVE,
+                               &r);
 
        if (!NT_STATUS_IS_OK(status)) {
                return status;
        }
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_OUT_DEBUG(dfs_Remove, &r);
+       }
 
        if (NT_STATUS_IS_ERR(status)) {
                return status;
@@ -110,7 +145,14 @@ NTSTATUS rpccli_dfs_Remove(struct rpc_pipe_client *cli, 
TALLOC_CTX *mem_ctx, con
        return werror_to_ntstatus(r.out.result);
 }
 
-NTSTATUS rpccli_dfs_SetInfo(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, 
const char *dfs_entry_path, const char *servername, const char *sharename, 
uint32_t level, union dfs_Info *info, WERROR *werror)
+NTSTATUS rpccli_dfs_SetInfo(struct rpc_pipe_client *cli,
+                           TALLOC_CTX *mem_ctx,
+                           const char *dfs_entry_path,
+                           const char *servername,
+                           const char *sharename,
+                           uint32_t level,
+                           union dfs_Info *info,
+                           WERROR *werror)
 {
        struct dfs_SetInfo r;
        NTSTATUS status;
@@ -122,17 +164,24 @@ NTSTATUS rpccli_dfs_SetInfo(struct rpc_pipe_client *cli, 
TALLOC_CTX *mem_ctx, co
        r.in.level = level;
        r.in.info = info;
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_IN_DEBUG(dfs_SetInfo, &r);
+       }
 
-       status = cli_do_rpc_ndr(cli, mem_ctx, PI_NETDFS, &ndr_table_netdfs, 
NDR_DFS_SETINFO, &r);
+       status = cli_do_rpc_ndr(cli,
+                               mem_ctx,
+                               PI_NETDFS,
+                               &ndr_table_netdfs,
+                               NDR_DFS_SETINFO,
+                               &r);
 
        if (!NT_STATUS_IS_OK(status)) {
                return status;
        }
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_OUT_DEBUG(dfs_SetInfo, &r);
+       }
 
        if (NT_STATUS_IS_ERR(status)) {
                return status;
@@ -148,7 +197,14 @@ NTSTATUS rpccli_dfs_SetInfo(struct rpc_pipe_client *cli, 
TALLOC_CTX *mem_ctx, co
        return werror_to_ntstatus(r.out.result);
 }
 
-NTSTATUS rpccli_dfs_GetInfo(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, 
const char *dfs_entry_path, const char *servername, const char *sharename, 
uint32_t level, union dfs_Info *info, WERROR *werror)
+NTSTATUS rpccli_dfs_GetInfo(struct rpc_pipe_client *cli,
+                           TALLOC_CTX *mem_ctx,
+                           const char *dfs_entry_path,
+                           const char *servername,
+                           const char *sharename,
+                           uint32_t level,
+                           union dfs_Info *info,
+                           WERROR *werror)
 {
        struct dfs_GetInfo r;
        NTSTATUS status;
@@ -159,17 +215,24 @@ NTSTATUS rpccli_dfs_GetInfo(struct rpc_pipe_client *cli, 
TALLOC_CTX *mem_ctx, co
        r.in.sharename = sharename;
        r.in.level = level;
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_IN_DEBUG(dfs_GetInfo, &r);
+       }
 
-       status = cli_do_rpc_ndr(cli, mem_ctx, PI_NETDFS, &ndr_table_netdfs, 
NDR_DFS_GETINFO, &r);
+       status = cli_do_rpc_ndr(cli,
+                               mem_ctx,
+                               PI_NETDFS,
+                               &ndr_table_netdfs,
+                               NDR_DFS_GETINFO,
+                               &r);
 
        if (!NT_STATUS_IS_OK(status)) {
                return status;
        }
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_OUT_DEBUG(dfs_GetInfo, &r);
+       }
 
        if (NT_STATUS_IS_ERR(status)) {
                return status;
@@ -186,7 +249,13 @@ NTSTATUS rpccli_dfs_GetInfo(struct rpc_pipe_client *cli, 
TALLOC_CTX *mem_ctx, co
        return werror_to_ntstatus(r.out.result);
 }
 
-NTSTATUS rpccli_dfs_Enum(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, 
uint32_t level, uint32_t bufsize, struct dfs_EnumStruct *info, uint32_t *total, 
WERROR *werror)
+NTSTATUS rpccli_dfs_Enum(struct rpc_pipe_client *cli,
+                        TALLOC_CTX *mem_ctx,
+                        uint32_t level,
+                        uint32_t bufsize,
+                        struct dfs_EnumStruct *info,
+                        uint32_t *total,
+                        WERROR *werror)
 {
        struct dfs_Enum r;
        NTSTATUS status;
@@ -197,17 +266,24 @@ NTSTATUS rpccli_dfs_Enum(struct rpc_pipe_client *cli, 
TALLOC_CTX *mem_ctx, uint3
        r.in.info = info;
        r.in.total = total;
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_IN_DEBUG(dfs_Enum, &r);
+       }
 
-       status = cli_do_rpc_ndr(cli, mem_ctx, PI_NETDFS, &ndr_table_netdfs, 
NDR_DFS_ENUM, &r);
+       status = cli_do_rpc_ndr(cli,
+                               mem_ctx,
+                               PI_NETDFS,
+                               &ndr_table_netdfs,
+                               NDR_DFS_ENUM,
+                               &r);
 
        if (!NT_STATUS_IS_OK(status)) {
                return status;
        }
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_OUT_DEBUG(dfs_Enum, &r);
+       }
 
        if (NT_STATUS_IS_ERR(status)) {
                return status;
@@ -229,24 +305,33 @@ NTSTATUS rpccli_dfs_Enum(struct rpc_pipe_client *cli, 
TALLOC_CTX *mem_ctx, uint3
        return werror_to_ntstatus(r.out.result);
 }
 
-NTSTATUS rpccli_dfs_Rename(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, 
WERROR *werror)
+NTSTATUS rpccli_dfs_Rename(struct rpc_pipe_client *cli,
+                          TALLOC_CTX *mem_ctx,
+                          WERROR *werror)
 {
        struct dfs_Rename r;
        NTSTATUS status;
 
        /* In parameters */
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_IN_DEBUG(dfs_Rename, &r);
+       }
 
-       status = cli_do_rpc_ndr(cli, mem_ctx, PI_NETDFS, &ndr_table_netdfs, 
NDR_DFS_RENAME, &r);
+       status = cli_do_rpc_ndr(cli,
+                               mem_ctx,
+                               PI_NETDFS,
+                               &ndr_table_netdfs,
+                               NDR_DFS_RENAME,
+                               &r);
 
        if (!NT_STATUS_IS_OK(status)) {
                return status;
        }
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_OUT_DEBUG(dfs_Rename, &r);
+       }
 
        if (NT_STATUS_IS_ERR(status)) {
                return status;
@@ -262,24 +347,33 @@ NTSTATUS rpccli_dfs_Rename(struct rpc_pipe_client *cli, 
TALLOC_CTX *mem_ctx, WER
        return werror_to_ntstatus(r.out.result);
 }
 
-NTSTATUS rpccli_dfs_Move(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, 
WERROR *werror)
+NTSTATUS rpccli_dfs_Move(struct rpc_pipe_client *cli,
+                        TALLOC_CTX *mem_ctx,
+                        WERROR *werror)
 {
        struct dfs_Move r;
        NTSTATUS status;
 
        /* In parameters */
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_IN_DEBUG(dfs_Move, &r);
+       }
 
-       status = cli_do_rpc_ndr(cli, mem_ctx, PI_NETDFS, &ndr_table_netdfs, 
NDR_DFS_MOVE, &r);
+       status = cli_do_rpc_ndr(cli,
+                               mem_ctx,
+                               PI_NETDFS,
+                               &ndr_table_netdfs,
+                               NDR_DFS_MOVE,
+                               &r);
 
        if (!NT_STATUS_IS_OK(status)) {
                return status;
        }
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_OUT_DEBUG(dfs_Move, &r);
+       }
 
        if (NT_STATUS_IS_ERR(status)) {
                return status;
@@ -295,24 +389,33 @@ NTSTATUS rpccli_dfs_Move(struct rpc_pipe_client *cli, 
TALLOC_CTX *mem_ctx, WERRO
        return werror_to_ntstatus(r.out.result);
 }
 
-NTSTATUS rpccli_dfs_ManagerGetConfigInfo(struct rpc_pipe_client *cli, 
TALLOC_CTX *mem_ctx, WERROR *werror)
+NTSTATUS rpccli_dfs_ManagerGetConfigInfo(struct rpc_pipe_client *cli,
+                                        TALLOC_CTX *mem_ctx,
+                                        WERROR *werror)
 {
        struct dfs_ManagerGetConfigInfo r;
        NTSTATUS status;
 
        /* In parameters */
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_IN_DEBUG(dfs_ManagerGetConfigInfo, &r);
+       }
 
-       status = cli_do_rpc_ndr(cli, mem_ctx, PI_NETDFS, &ndr_table_netdfs, 
NDR_DFS_MANAGERGETCONFIGINFO, &r);
+       status = cli_do_rpc_ndr(cli,
+                               mem_ctx,
+                               PI_NETDFS,
+                               &ndr_table_netdfs,
+                               NDR_DFS_MANAGERGETCONFIGINFO,
+                               &r);
 
        if (!NT_STATUS_IS_OK(status)) {
                return status;
        }
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_OUT_DEBUG(dfs_ManagerGetConfigInfo, &r);
+       }
 
        if (NT_STATUS_IS_ERR(status)) {
                return status;
@@ -328,24 +431,33 @@ NTSTATUS rpccli_dfs_ManagerGetConfigInfo(struct 
rpc_pipe_client *cli, TALLOC_CTX
        return werror_to_ntstatus(r.out.result);
 }
 
-NTSTATUS rpccli_dfs_ManagerSendSiteInfo(struct rpc_pipe_client *cli, 
TALLOC_CTX *mem_ctx, WERROR *werror)
+NTSTATUS rpccli_dfs_ManagerSendSiteInfo(struct rpc_pipe_client *cli,
+                                       TALLOC_CTX *mem_ctx,
+                                       WERROR *werror)
 {
        struct dfs_ManagerSendSiteInfo r;
        NTSTATUS status;
 
        /* In parameters */
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_IN_DEBUG(dfs_ManagerSendSiteInfo, &r);
+       }
 
-       status = cli_do_rpc_ndr(cli, mem_ctx, PI_NETDFS, &ndr_table_netdfs, 
NDR_DFS_MANAGERSENDSITEINFO, &r);
+       status = cli_do_rpc_ndr(cli,
+                               mem_ctx,
+                               PI_NETDFS,
+                               &ndr_table_netdfs,
+                               NDR_DFS_MANAGERSENDSITEINFO,
+                               &r);
 
        if (!NT_STATUS_IS_OK(status)) {
                return status;
        }
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_OUT_DEBUG(dfs_ManagerSendSiteInfo, &r);
+       }
 
        if (NT_STATUS_IS_ERR(status)) {
                return status;
@@ -361,7 +473,18 @@ NTSTATUS rpccli_dfs_ManagerSendSiteInfo(struct 
rpc_pipe_client *cli, TALLOC_CTX
        return werror_to_ntstatus(r.out.result);
 }
 
-NTSTATUS rpccli_dfs_AddFtRoot(struct rpc_pipe_client *cli, TALLOC_CTX 
*mem_ctx, const char *servername, const char *dns_servername, const char 
*dfsname, const char *rootshare, const char *comment, const char 
*dfs_config_dn, uint8_t unknown1, uint32_t flags, struct dfs_UnknownStruct 
**unknown2, WERROR *werror)
+NTSTATUS rpccli_dfs_AddFtRoot(struct rpc_pipe_client *cli,
+                             TALLOC_CTX *mem_ctx,
+                             const char *servername,
+                             const char *dns_servername,
+                             const char *dfsname,
+                             const char *rootshare,
+                             const char *comment,
+                             const char *dfs_config_dn,
+                             uint8_t unknown1,
+                             uint32_t flags,
+                             struct dfs_UnknownStruct **unknown2,
+                             WERROR *werror)
 {
        struct dfs_AddFtRoot r;
        NTSTATUS status;
@@ -377,17 +500,24 @@ NTSTATUS rpccli_dfs_AddFtRoot(struct rpc_pipe_client 
*cli, TALLOC_CTX *mem_ctx,
        r.in.flags = flags;
        r.in.unknown2 = unknown2;
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_IN_DEBUG(dfs_AddFtRoot, &r);
+       }
 
-       status = cli_do_rpc_ndr(cli, mem_ctx, PI_NETDFS, &ndr_table_netdfs, 
NDR_DFS_ADDFTROOT, &r);
+       status = cli_do_rpc_ndr(cli,
+                               mem_ctx,
+                               PI_NETDFS,
+                               &ndr_table_netdfs,
+                               NDR_DFS_ADDFTROOT,
+                               &r);
 
        if (!NT_STATUS_IS_OK(status)) {
                return status;
        }
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_OUT_DEBUG(dfs_AddFtRoot, &r);
+       }
 
        if (NT_STATUS_IS_ERR(status)) {
                return status;
@@ -406,7 +536,15 @@ NTSTATUS rpccli_dfs_AddFtRoot(struct rpc_pipe_client *cli, 
TALLOC_CTX *mem_ctx,
        return werror_to_ntstatus(r.out.result);
 }
 
-NTSTATUS rpccli_dfs_RemoveFtRoot(struct rpc_pipe_client *cli, TALLOC_CTX 
*mem_ctx, const char *servername, const char *dns_servername, const char 
*dfsname, const char *rootshare, uint32_t flags, struct dfs_UnknownStruct 
**unknown, WERROR *werror)
+NTSTATUS rpccli_dfs_RemoveFtRoot(struct rpc_pipe_client *cli,
+                                TALLOC_CTX *mem_ctx,
+                                const char *servername,
+                                const char *dns_servername,
+                                const char *dfsname,
+                                const char *rootshare,
+                                uint32_t flags,
+                                struct dfs_UnknownStruct **unknown,
+                                WERROR *werror)
 {
        struct dfs_RemoveFtRoot r;
        NTSTATUS status;
@@ -419,17 +557,24 @@ NTSTATUS rpccli_dfs_RemoveFtRoot(struct rpc_pipe_client 
*cli, TALLOC_CTX *mem_ct
        r.in.flags = flags;
        r.in.unknown = unknown;
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_IN_DEBUG(dfs_RemoveFtRoot, &r);
+       }
 
-       status = cli_do_rpc_ndr(cli, mem_ctx, PI_NETDFS, &ndr_table_netdfs, 
NDR_DFS_REMOVEFTROOT, &r);
+       status = cli_do_rpc_ndr(cli,
+                               mem_ctx,
+                               PI_NETDFS,
+                               &ndr_table_netdfs,
+                               NDR_DFS_REMOVEFTROOT,
+                               &r);
 
        if (!NT_STATUS_IS_OK(status)) {
                return status;
        }
 
-       if (DEBUGLEVEL >= 10)
+       if (DEBUGLEVEL >= 10) {
                NDR_PRINT_OUT_DEBUG(dfs_RemoveFtRoot, &r);


-- 
Samba Shared Repository

Reply via email to