diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2009-10-11 13:57:29 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2009-10-11 13:57:29 +0100 |
commit | 0f7ee7e53f6bcb2d1d262a94c278440413c0103a (patch) | |
tree | c1cef2714322015afe4c7ac9b2f57dd626a907b8 /set.h | |
parent | db4cd40374ade33ccb1feae113f12a1dd0b6bf37 (diff) |
Copy all the string/bool/int account settings with their defaults to
"account set". They can be changed, but changes don't yet have any effect.
Diffstat (limited to 'set.h')
-rw-r--r-- | set.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,7 +72,7 @@ typedef struct set } set_t; /* Should be pretty clear. */ -set_t *set_add( set_t **head, char *key, char *def, set_eval eval, void *data ); +set_t *set_add( set_t **head, const char *key, const char *def, set_eval eval, void *data ); /* Returns the raw set_t. Might be useful sometimes. */ set_t *set_find( set_t **head, char *key ); |