1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-12 20:58:37 +03:00

Add a couple of comment headers to the main libnet_conf functions.

Michael
(This used to be commit e9694ae20e1da1d8c1cbb252e630815b561647dd)
This commit is contained in:
Michael Adam 2007-12-29 02:26:33 +01:00
parent b5b51b530f
commit 27f0130434

View File

@ -340,6 +340,9 @@ done:
return werr;
}
/**
* set a configuration parameter to the value provided.
*/
WERROR libnet_smbconf_setparm(const char *service,
const char *param,
const char *valstr)
@ -366,6 +369,9 @@ done:
return werr;
}
/**
* get the value of a configuration parameter as a string
*/
WERROR libnet_smbconf_getparm(TALLOC_CTX *mem_ctx,
const char *service,
const char *param,
@ -413,6 +419,9 @@ done:
return werr;
}
/**
* delete a parameter from configuration
*/
WERROR libnet_smbconf_delparm(const char *service,
const char *param)
{