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.c | |
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.c')
-rw-r--r-- | set.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ /* Used to use NULL for this, but NULL is actually a "valid" value. */ char *SET_INVALID = "nee"; -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 ) { set_t *s = set_find( head, key ); |