From 0fe12bf9018131d846af6b9e6f40d6337dbbde19 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Mon, 13 Jun 2005 09:33:09 +0000 Subject: r7529: Apply some const, remove unused variable. Guenther (This used to be commit bc419472e295945559cf83f6ed9febff29adcfc1) --- source3/param/loadparm.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'source3/param/loadparm.c') diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index c0fbb1b77a..bfd7b650cb 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -2527,14 +2527,14 @@ void show_parameter_list(void) { int classIndex, parmIndex, enumIndex, flagIndex; BOOL hadFlag; - char *section_names[] = { "local", "global", NULL}; - char *type[] = { "P_BOOL", "P_BOOLREV", "P_CHAR", "P_INTEGER", + const char *section_names[] = { "local", "global", NULL}; + const char *type[] = { "P_BOOL", "P_BOOLREV", "P_CHAR", "P_INTEGER", "P_OCTAL", "P_LIST", "P_STRING", "P_USTRING", "P_GSTRING", "P_UGSTRING", "P_ENUM", "P_SEP"}; unsigned flags[] = { FLAG_BASIC, FLAG_SHARE, FLAG_PRINT, FLAG_GLOBAL, FLAG_WIZARD, FLAG_ADVANCED, FLAG_DEVELOPER, FLAG_DEPRECATED, FLAG_HIDE, FLAG_DOS_STRING}; - char *flag_names[] = { "FLAG_BASIC", "FLAG_SHARE", "FLAG_PRINT", + const char *flag_names[] = { "FLAG_BASIC", "FLAG_SHARE", "FLAG_PRINT", "FLAG_GLOBAL", "FLAG_WIZARD", "FLAG_ADVANCED", "FLAG_DEVELOPER", "FLAG_DEPRECATED", "FLAG_HIDE", "FLAG_DOS_STRING", NULL}; @@ -3690,7 +3690,6 @@ BOOL dump_a_parameter(int snum, char *parm_name, FILE * f, BOOL isGlobal) int i, result = False; parm_class class; unsigned flag = 0; - void *ptr; if (isGlobal) { class = P_GLOBAL; -- cgit