diff options
author | Michael Adam <obnox@samba.org> | 2007-12-29 02:26:33 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2007-12-29 02:26:33 +0100 |
commit | 27f0130434d978cf98bab4db38718cd1d3856535 (patch) | |
tree | 9621f5d7c5909a984be969ec17503fb6958e824b /source3/libnet | |
parent | b5b51b530fedf2190f675adbc1ba6e333a86ac0d (diff) | |
download | samba-27f0130434d978cf98bab4db38718cd1d3856535.tar.gz samba-27f0130434d978cf98bab4db38718cd1d3856535.tar.bz2 samba-27f0130434d978cf98bab4db38718cd1d3856535.zip |
Add a couple of comment headers to the main libnet_conf functions.
Michael
(This used to be commit e9694ae20e1da1d8c1cbb252e630815b561647dd)
Diffstat (limited to 'source3/libnet')
-rw-r--r-- | source3/libnet/libnet_conf.c | 9 |
1 files changed, 9 insertions, 0 deletions
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) { |