From 27f0130434d978cf98bab4db38718cd1d3856535 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sat, 29 Dec 2007 02:26:33 +0100 Subject: Add a couple of comment headers to the main libnet_conf functions. Michael (This used to be commit e9694ae20e1da1d8c1cbb252e630815b561647dd) --- source3/libnet/libnet_conf.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'source3') diff --git a/source3/libnet/libnet_conf.c b/source3/libnet/libnet_conf.c index 6603de0199..a8a8e01538 100644 --- a/source3/libnet/libnet_conf.c +++ b/source3/libnet/libnet_conf.c @@ -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) { -- cgit