summaryrefslogtreecommitdiffstats
path: root/source3
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2014-11-20 12:59:15 +0100
committerMichael Adam <obnox@samba.org>2014-11-20 18:45:27 +0100
commit5ec63b8bc1a16b1bbda7ec8e5442a1b3d6f2d13c (patch)
tree952bd68d2529b1ef796205a719a2f9408ecf8411 /source3
parent5c60dc429f9d4c7d2869a5bbd4b582eab67c10db (diff)
downloadsamba-5ec63b8bc1a16b1bbda7ec8e5442a1b3d6f2d13c.tar.gz
samba-5ec63b8bc1a16b1bbda7ec8e5442a1b3d6f2d13c.tar.xz
samba-5ec63b8bc1a16b1bbda7ec8e5442a1b3d6f2d13c.zip
s3:libsmb: fix some function header comments.
Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Michael Adam <obnox@samba.org> Autobuild-Date(master): Thu Nov 20 18:45:28 CET 2014 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r--source3/libsmb/libsmb_setget.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/libsmb/libsmb_setget.c b/source3/libsmb/libsmb_setget.c
index 3255b522bb..d203b09a4c 100644
--- a/source3/libsmb/libsmb_setget.c
+++ b/source3/libsmb/libsmb_setget.c
@@ -467,14 +467,14 @@ smbc_setOptionNoAutoAnonymousLogin(SMBCCTX *c, smbc_bool b)
}
}
-/** Get whether to enable use of kerberos */
+/** Get whether to enable use of the winbind ccache */
smbc_bool
smbc_getOptionUseCCache(SMBCCTX *c)
{
return c->flags & SMB_CTX_FLAG_USE_CCACHE ? True : False;
}
-/** Set whether to enable use of kerberos */
+/** Set whether to enable use of the winbind ccache */
void
smbc_setOptionUseCCache(SMBCCTX *c, smbc_bool b)
{
@@ -485,7 +485,7 @@ smbc_setOptionUseCCache(SMBCCTX *c, smbc_bool b)
}
}
-/** Get whether to enable use of the winbind ccache */
+/** Get indication whether the password supplied is the NT hash */
smbc_bool
smbc_getOptionUseNTHash(SMBCCTX *c)
{