diff options
Diffstat (limited to 'lib/param/loadparm.c')
-rw-r--r-- | lib/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c index 4cc2da81aa..b1e160d70b 100644 --- a/lib/param/loadparm.c +++ b/lib/param/loadparm.c @@ -541,7 +541,7 @@ bool lpcfg_parm_bool(struct loadparm_context *lp_ctx, * Set a string value, deallocating any existing space, and allocing the space * for the string */ -static bool lpcfg_string_set(TALLOC_CTX *mem_ctx, char **dest, const char *src) +bool lpcfg_string_set(TALLOC_CTX *mem_ctx, char **dest, const char *src) { talloc_free(*dest); |