diff options
author | Michael Adam <obnox@samba.org> | 2008-01-13 23:16:01 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-01-13 23:16:42 +0100 |
commit | 864fc10a278869b1474e407c963f9f40464d55c0 (patch) | |
tree | fd3d475761321e155e01f66fa16b80afcdd16020 | |
parent | c4899fec9f3957c52d3a856000631d59a3346ac0 (diff) | |
download | samba-864fc10a278869b1474e407c963f9f40464d55c0.tar.gz samba-864fc10a278869b1474e407c963f9f40464d55c0.tar.bz2 samba-864fc10a278869b1474e407c963f9f40464d55c0.zip |
Add a function libnet_conf_delete_global_parameter() to libnet_conf.c
Create the [global] section if it does not yet exist.
Michael
(This used to be commit 90fa2981c949e21f66a44d634ebe9d661819f0a3)
-rw-r--r-- | source3/libnet/libnet_conf.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/source3/libnet/libnet_conf.c b/source3/libnet/libnet_conf.c index 37e05b9fe9..d20e10b141 100644 --- a/source3/libnet/libnet_conf.c +++ b/source3/libnet/libnet_conf.c @@ -925,3 +925,24 @@ done: return werr; } +/** + * Delete a global parameter. + * + * Create [global] if it does not exist. + */ +WERROR libnet_conf_delete_global_parameter(struct libnet_conf_ctx *ctx, + const char *param) +{ + WERROR werr; + + if (!libnet_conf_share_exists(ctx, GLOBAL_NAME)) { + werr = libnet_conf_create_share(ctx, GLOBAL_NAME); + if (!W_ERROR_IS_OK(werr)) { + goto done; + } + } + werr = libnet_conf_delete_parameter(ctx, GLOBAL_NAME, param); + +done: + return werr; +} |