diff options
author | Michael Brown <mcb30@ipxe.org> | 2012-10-15 03:08:12 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2012-10-15 18:32:16 +0100 |
commit | 1c2b6d29ea0eae83da627aca560f5e4a5d521fe4 (patch) | |
tree | 7c9b68d5641012fb6cef1042d2bc5c41601255f4 /src/core/settings.c | |
parent | 51b65d5f9c5d9f02a11810ac068b781b84c65143 (diff) | |
download | ipxe-1c2b6d29ea0eae83da627aca560f5e4a5d521fe4.tar.gz |
[settings] Expose find_child_settings()
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/core/settings.c')
-rw-r--r-- | src/core/settings.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/settings.c b/src/core/settings.c index 20b7f949..9b5bc054 100644 --- a/src/core/settings.c +++ b/src/core/settings.c @@ -265,8 +265,8 @@ static void autovivified_settings_free ( struct refcnt *refcnt ) { * @v name Name within this parent * @ret settings Settings block, or NULL */ -static struct settings * find_child_settings ( struct settings *parent, - const char *name ) { +struct settings * find_child_settings ( struct settings *parent, + const char *name ) { struct settings *settings; /* Treat empty name as meaning "this block" */ |