From 5ec63b8bc1a16b1bbda7ec8e5442a1b3d6f2d13c Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 20 Nov 2014 12:59:15 +0100 Subject: s3:libsmb: fix some function header comments. Signed-off-by: Michael Adam Reviewed-by: Stefan Metzmacher Autobuild-User(master): Michael Adam Autobuild-Date(master): Thu Nov 20 18:45:28 CET 2014 on sn-devel-104 --- source3/libsmb/libsmb_setget.c | 6 +++--- 1 file 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) { -- cgit