1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-08 04:58:40 +03:00

libgpo: apply some const.

Guenther

Signed-off-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Günther Deschner 2016-09-27 18:18:51 +02:00 committed by Andreas Schneider
parent 8e5251c1f3
commit dcb2680163
4 changed files with 10 additions and 10 deletions

View File

@ -150,7 +150,7 @@ static NTSTATUS convert_file_from_ucs2(TALLOC_CTX *mem_ctx,
/****************************************************************
****************************************************************/
NTSTATUS gp_inifile_getstring(struct gp_inifile_context *ctx, const char *key, char **ret)
NTSTATUS gp_inifile_getstring(struct gp_inifile_context *ctx, const char *key, const char **ret)
{
int i;
@ -170,7 +170,7 @@ NTSTATUS gp_inifile_getstring(struct gp_inifile_context *ctx, const char *key, c
NTSTATUS gp_inifile_getint(struct gp_inifile_context *ctx, const char *key, int *ret)
{
char *value;
const char *value;
NTSTATUS result;
result = gp_inifile_getstring(ctx,key, &value);
@ -189,7 +189,7 @@ NTSTATUS gp_inifile_getint(struct gp_inifile_context *ctx, const char *key, int
NTSTATUS gp_inifile_getbool(struct gp_inifile_context *ctx, const char *key, bool *ret)
{
char *value;
const char *value;
NTSTATUS result;
result = gp_inifile_getstring(ctx,key, &value);
@ -415,7 +415,7 @@ NTSTATUS parse_gpt_ini(TALLOC_CTX *mem_ctx,
NTSTATUS result;
int rv;
int v = 0;
char *name = NULL;
const char *name = NULL;
struct gp_inifile_context *ctx;
if (!filename) {

View File

@ -18,8 +18,8 @@
*/
struct keyval_pair {
char *key;
char *val;
const char *key;
const char *val;
};
struct gp_inifile_context {
@ -42,7 +42,7 @@ NTSTATUS parse_gpt_ini(TALLOC_CTX *ctx,
const char *filename,
uint32_t *version,
char **display_name);
NTSTATUS gp_inifile_getstring(struct gp_inifile_context *ctx, const char *key, char **ret);
NTSTATUS gp_inifile_getstring(struct gp_inifile_context *ctx, const char *key, const char **ret);
NTSTATUS gp_inifile_getint(struct gp_inifile_context *ctx, const char *key, int *ret);
NTSTATUS gp_inifile_getbool(struct gp_inifile_context *ctx, const char *key, bool *ret);

View File

@ -138,9 +138,9 @@ static NTSTATUS scripts_parse_ini_section(struct gp_inifile_context *ini_ctx,
while (1) {
const char *key = NULL;
char *script = NULL;
const char *script = NULL;
const char *count = NULL;
char *parameters = NULL;
const char *parameters = NULL;
count = talloc_asprintf(ini_ctx->mem_ctx, "%d", i);
NT_STATUS_HAVE_NO_MEMORY(count);

View File

@ -62,7 +62,7 @@ struct gpttmpl_table {
static NTSTATUS gpttmpl_parse_header(struct gp_inifile_context *ini_ctx,
uint32_t *version_out)
{
char *signature = NULL;
const char *signature = NULL;
NTSTATUS result;
int version;
bool is_unicode = false;