diff options
Diffstat (limited to 'source4/param/share.c')
-rw-r--r-- | source4/param/share.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/param/share.c b/source4/param/share.c index d0a570eeca..489049f39f 100644 --- a/source4/param/share.c +++ b/source4/param/share.c @@ -34,7 +34,7 @@ int share_int_option(struct share_config *scfg, const char *opt_name, int defval return scfg->ctx->ops->int_option(scfg, opt_name, defval); } -BOOL share_bool_option(struct share_config *scfg, const char *opt_name, BOOL defval) +bool share_bool_option(struct share_config *scfg, const char *opt_name, bool defval) { return scfg->ctx->ops->bool_option(scfg, opt_name, defval); } |