summaryrefslogtreecommitdiff
path: root/src/settings.c
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2019-11-20 12:50:20 -0800
committerVito Caputo <vcaputo@pengaru.com>2019-11-20 12:50:20 -0800
commit7a77cc1a7c6c05c6623d78b5a895f2f004ba6cf9 (patch)
treecc9f2aca03f8d7e72c3742cab8a1af6032a6ace5 /src/settings.c
parent2ab8f3c6a74f308a0909ff2963fe4216832e2f32 (diff)
settings: add setting_desc_t.random() method
To facilitate random setting of these flexible string-oriented settings, support a random helper supplied with the description. This helper would return a valid random string to be used with the respective setting being described. Immediate use case is the rtv module, which also gets fixed up to use it in this commit.
Diffstat (limited to 'src/settings.c')
-rw-r--r--src/settings.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/settings.c b/src/settings.c
index e5560b0..02c8e8d 100644
--- a/src/settings.c
+++ b/src/settings.c
@@ -265,6 +265,8 @@ int setting_desc_clone(const setting_desc_t *desc, setting_desc_t **res_desc)
}
}
+ d->random = desc->random;
+
/* TODO: handle allocation errors above... */
*res_desc = d;
© All Rights Reserved