Pure cosmetics, trying to get my group policy diff smaller.
authorGünther Deschner <gd@samba.org>
Fri, 29 Feb 2008 13:51:37 +0000 (14:51 +0100)
committerGünther Deschner <gd@samba.org>
Fri, 29 Feb 2008 13:53:13 +0000 (14:53 +0100)
Gunther

source/libgpo/gpo_fetch.c
source/libgpo/gpo_filesync.c
source/libgpo/gpo_ini.c
source/libgpo/gpo_ldap.c
source/libgpo/gpo_sec.c

index 916db2b3d354d36c36fa2da9acbbfb58b6f32ac9..2ec066425bb5706e08ccb62a768278d910e89fb3 100644 (file)
@@ -44,15 +44,18 @@ NTSTATUS gpo_explode_filesyspath(TALLOC_CTX *mem_ctx,
        if (!next_token_talloc(mem_ctx, &file_sys_path, server, "\\")) {
                return NT_STATUS_INVALID_PARAMETER;
        }
+       NT_STATUS_HAVE_NO_MEMORY(*server);
 
        if (!next_token_talloc(mem_ctx, &file_sys_path, service, "\\")) {
                return NT_STATUS_INVALID_PARAMETER;
        }
+       NT_STATUS_HAVE_NO_MEMORY(*service);
 
        if ((*nt_path = talloc_asprintf(mem_ctx, "\\%s", file_sys_path))
                == NULL) {
                return NT_STATUS_NO_MEMORY;
        }
+       NT_STATUS_HAVE_NO_MEMORY(*nt_path);
 
        if ((path = talloc_asprintf(mem_ctx,
                                        "%s/%s",
@@ -65,9 +68,8 @@ NTSTATUS gpo_explode_filesyspath(TALLOC_CTX *mem_ctx,
                return NT_STATUS_NO_MEMORY;
        }
 
-       if ((*unix_path = talloc_strdup(mem_ctx, path)) == NULL) {
-               return NT_STATUS_NO_MEMORY;
-       }
+       *unix_path = talloc_strdup(mem_ctx, path);
+       NT_STATUS_HAVE_NO_MEMORY(*unix_path);
 
        TALLOC_FREE(path);
        return NT_STATUS_OK;
@@ -124,36 +126,23 @@ NTSTATUS gpo_fetch_files(TALLOC_CTX *mem_ctx,
        result = gpo_explode_filesyspath(mem_ctx, gpo->file_sys_path,
                                         &server, &service, &nt_path,
                                         &unix_path);
-       if (!NT_STATUS_IS_OK(result)) {
-               goto out;
-       }
+       NT_STATUS_NOT_OK_RETURN(result);
 
        result = gpo_prepare_local_store(mem_ctx, unix_path);
-       if (!NT_STATUS_IS_OK(result)) {
-               goto out;
-       }
+       NT_STATUS_NOT_OK_RETURN(result);
 
        unix_ini_path = talloc_asprintf(mem_ctx, "%s/%s", unix_path, GPT_INI);
        nt_ini_path = talloc_asprintf(mem_ctx, "%s\\%s", nt_path, GPT_INI);
-       if (!unix_path || !nt_ini_path) {
-               result = NT_STATUS_NO_MEMORY;
-               goto out;
-       }
+       NT_STATUS_HAVE_NO_MEMORY(unix_ini_path);
+       NT_STATUS_HAVE_NO_MEMORY(nt_ini_path);
 
        result = gpo_copy_file(mem_ctx, cli, nt_ini_path, unix_ini_path);
-       if (!NT_STATUS_IS_OK(result)) {
-               goto out;
-       }
+       NT_STATUS_NOT_OK_RETURN(result);
 
        result = gpo_sync_directories(mem_ctx, cli, nt_path, unix_path);
-       if (!NT_STATUS_IS_OK(result)) {
-               goto out;
-       }
+       NT_STATUS_NOT_OK_RETURN(result);
 
-       result = NT_STATUS_OK;
-
- out:
-       return result;
+       return NT_STATUS_OK;
 }
 
 /****************************************************************
index 03d5286fae4c779937a8c792292c10cd15b43f01..6d64d7b968ce766b4fbde810d42925db6341cdb5 100644 (file)
@@ -117,10 +117,10 @@ static bool gpo_sync_files(struct sync_context *ctx)
                     ctx) == -1) {
                DEBUG(1,("listing [%s] failed with error: %s\n",
                        ctx->mask, cli_errstr(ctx->cli)));
-               return False;
+               return false;
        }
 
-       return True;
+       return true;
 }
 
 /****************************************************************
index 306d6f9becbe3258a2f8356bb93df7f96353216f..d8f14b609f3a965ed297b88ef1a6bd9f77a90cdd 100644 (file)
@@ -174,7 +174,7 @@ static NTSTATUS convert_file_from_ucs2(TALLOC_CTX *mem_ctx,
 
  failed:
 
-       DEBUG(1,("gp_inifile_init_context failed: %s\n",
+       DEBUG(1,("gp_inifile_init_context failed: %s\n",
                nt_errstr(status)));
 
        TALLOC_FREE(ctx);
@@ -237,7 +237,7 @@ NTSTATUS parse_gpt_ini(TALLOC_CTX *mem_ctx,
 
        result = NT_STATUS_OK;
  out:
-       if (dict) {
+       if (dict) {
                iniparser_freedict(dict);
        }
 
index a34e6861a5df90948a2686011e5faf2b1e57bec0..477832abc5793b251380929b78e92dc6c1892ff8 100644 (file)
@@ -27,7 +27,7 @@ bool ads_parse_gp_ext(TALLOC_CTX *mem_ctx,
                      const char *extension_raw,
                      struct GP_EXT **gp_ext)
 {
-       bool ret = False;
+       bool ret = false;
        struct GP_EXT *ext = NULL;
        char **ext_list = NULL;
        char **ext_strings = NULL;
@@ -134,7 +134,7 @@ bool ads_parse_gp_ext(TALLOC_CTX *mem_ctx,
 
        *gp_ext = ext;
 
-       ret = True;
+       ret = true;
 
  parse_error:
        TALLOC_FREE(ext_list);
@@ -659,7 +659,7 @@ ADS_STATUS ads_get_sid_token(ADS_STRUCT *ads,
                }
        }
 
-       new_token = create_local_nt_token(mem_ctx, &object_sid, False,
+       new_token = create_local_nt_token(mem_ctx, &object_sid, false,
                                          num_token_sids, token_sids);
        ADS_ERROR_HAVE_NO_MEMORY(new_token);
 
@@ -713,7 +713,7 @@ ADS_STATUS ads_get_gpo_list(ADS_STRUCT *ads,
        ADS_STATUS status;
        struct GP_LINK gp_link;
        const char *parent_dn, *site_dn, *tmp_dn;
-       bool add_only_forced_gpos = False;
+       bool add_only_forced_gpos = false;
 
        ZERO_STRUCTP(gpo_list);
 
@@ -793,7 +793,7 @@ ADS_STATUS ads_get_gpo_list(ADS_STRUCT *ads,
                                /* block inheritance from now on */
                                if (gp_link.gp_opts &
                                    GPOPTIONS_BLOCK_INHERITANCE) {
-                                       add_only_forced_gpos = True;
+                                       add_only_forced_gpos = true;
                                }
 
                                status = add_gplink_to_gpo_list(ads,
@@ -839,7 +839,7 @@ ADS_STATUS ads_get_gpo_list(ADS_STRUCT *ads,
                                /* block inheritance from now on */
                                if (gp_link.gp_opts &
                                    GPOPTIONS_BLOCK_INHERITANCE) {
-                                       add_only_forced_gpos = True;
+                                       add_only_forced_gpos = true;
                                }
 
                                status = add_gplink_to_gpo_list(ads,
index 7f8324b9949bb62569fec83b2d92e51578dd8d87..42ab72a99bb3d59fc865957049da8e127873f874 100644 (file)
@@ -28,13 +28,13 @@ static bool gpo_sd_check_agp_object_guid(const struct security_ace_object *objec
        NTSTATUS status;
 
        if (!object) {
-               return False;
+               return false;
        }
 
        status = GUID_from_string(ADS_EXTENDED_RIGHT_APPLY_GROUP_POLICY,
                                  &ext_right_apg_guid);
        if (!NT_STATUS_IS_OK(status)) {
-               return False;
+               return false;
        }
 
        switch (object->flags) {
@@ -52,7 +52,7 @@ static bool gpo_sd_check_agp_object_guid(const struct security_ace_object *objec
                        break;
        }
 
-       return False;
+       return false;
 }
 
 /****************************************************************
@@ -61,7 +61,7 @@ static bool gpo_sd_check_agp_object_guid(const struct security_ace_object *objec
 static bool gpo_sd_check_agp_object(const SEC_ACE *ace)
 {
        if (!sec_ace_object(ace->type)) {
-               return False;
+               return false;
        }
 
        return gpo_sd_check_agp_object_guid(&ace->object.object);