Add a couple of comment headers to the main libnet_conf functions.
authorMichael Adam <obnox@samba.org>
Sat, 29 Dec 2007 01:26:33 +0000 (02:26 +0100)
committerMichael Adam <obnox@samba.org>
Sat, 29 Dec 2007 01:26:33 +0000 (02:26 +0100)
Michael
(This used to be commit e9694ae20e1da1d8c1cbb252e630815b561647dd)

source3/libnet/libnet_conf.c

index 6603de019942c57bcd3f1451d587036b575b2f3f..a8a8e01538ee5e23f5552948b756ea6fd5fb886a 100644 (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)
 {