From 61ffa08f4c95e29d301de9fbabd6e71c2dbc1056 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 27 Aug 2007 18:10:19 +0000 Subject: r24712: No longer expose the 'BOOL' data type in any interfaces. (This used to be commit 1ce32673d960c8b05b6c1b1b99e1976a402417ae) --- source4/param/share.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/param/share.h') diff --git a/source4/param/share.h b/source4/param/share.h index cbbf8dc044..4e16f03715 100644 --- a/source4/param/share.h +++ b/source4/param/share.h @@ -52,7 +52,7 @@ struct share_ops { NTSTATUS (*init)(TALLOC_CTX *, const struct share_ops*, struct share_context **); const char *(*string_option)(struct share_config *, const char *, const char *); int (*int_option)(struct share_config *, const char *, int); - BOOL (*bool_option)(struct share_config *, const char *, BOOL); + bool (*bool_option)(struct share_config *, const char *, bool); const char **(*string_list_option)(TALLOC_CTX *, struct share_config *, const char *); NTSTATUS (*list_all)(TALLOC_CTX *, struct share_context *, int *, const char ***); NTSTATUS (*get_config)(TALLOC_CTX *, struct share_context *, const char *, struct share_config **); -- cgit