mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 04:18:08 +01:00
CLI/config: make immutable tables const
Let the compiler help us catch bugs.
This commit is contained in:
parent
5a8d174f67
commit
19983fe554
1 changed files with 4 additions and 4 deletions
|
@ -32,7 +32,7 @@ static const char toplevel_config_comment[] =
|
||||||
"\n"
|
"\n"
|
||||||
" For more information about notmuch, see https://notmuchmail.org";
|
" For more information about notmuch, see https://notmuchmail.org";
|
||||||
|
|
||||||
struct config_group {
|
static const struct config_group {
|
||||||
const char *group_name;
|
const char *group_name;
|
||||||
const char *comment;
|
const char *comment;
|
||||||
} group_comment_table [] = {
|
} group_comment_table [] = {
|
||||||
|
@ -512,14 +512,14 @@ typedef struct config_key {
|
||||||
bool (*validate)(const char *);
|
bool (*validate)(const char *);
|
||||||
} config_key_info_t;
|
} config_key_info_t;
|
||||||
|
|
||||||
static struct config_key
|
static const struct config_key
|
||||||
config_key_table[] = {
|
config_key_table[] = {
|
||||||
{ "index.decrypt", false, NULL },
|
{ "index.decrypt", false, NULL },
|
||||||
{ "index.header.", true, validate_field_name },
|
{ "index.header.", true, validate_field_name },
|
||||||
{ "query.", true, NULL },
|
{ "query.", true, NULL },
|
||||||
};
|
};
|
||||||
|
|
||||||
static config_key_info_t *
|
static const config_key_info_t *
|
||||||
_config_key_info (const char *item)
|
_config_key_info (const char *item)
|
||||||
{
|
{
|
||||||
for (size_t i = 0; i < ARRAY_SIZE (config_key_table); i++) {
|
for (size_t i = 0; i < ARRAY_SIZE (config_key_table); i++) {
|
||||||
|
@ -583,7 +583,7 @@ notmuch_config_command_set (notmuch_database_t *notmuch,
|
||||||
int argc, char *argv[])
|
int argc, char *argv[])
|
||||||
{
|
{
|
||||||
char *group, *key;
|
char *group, *key;
|
||||||
config_key_info_t *key_info;
|
const config_key_info_t *key_info;
|
||||||
notmuch_conffile_t *config;
|
notmuch_conffile_t *config;
|
||||||
bool update_database = false;
|
bool update_database = false;
|
||||||
int opt_index, ret;
|
int opt_index, ret;
|
||||||
|
|
Loading…
Reference in a new issue