summaryrefslogtreecommitdiff
path: root/source3/nsswitch/libwbclient/wbc_pam.c
diff options
context:
space:
mode:
authorKai Blin <kai@samba.org>2008-11-23 15:16:17 +0100
committerKai Blin <kai@samba.org>2008-11-25 09:28:25 +0100
commit6485c99074fee57c016a202216570fce749d36c1 (patch)
tree49a6f782cf58d33a7b3daec6846985c51af665d4 /source3/nsswitch/libwbclient/wbc_pam.c
parent1fac1447038fef0c68620f69788d48abe4349fd7 (diff)
downloadsamba-6485c99074fee57c016a202216570fce749d36c1.tar.gz
samba-6485c99074fee57c016a202216570fce749d36c1.tar.bz2
samba-6485c99074fee57c016a202216570fce749d36c1.zip
libwbclient: Add placeholder function for WINBINDD_CCACHE_NTLMAUTH
Diffstat (limited to 'source3/nsswitch/libwbclient/wbc_pam.c')
-rw-r--r--source3/nsswitch/libwbclient/wbc_pam.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/source3/nsswitch/libwbclient/wbc_pam.c b/source3/nsswitch/libwbclient/wbc_pam.c
index 713ba2e65b..401d2ad2c3 100644
--- a/source3/nsswitch/libwbclient/wbc_pam.c
+++ b/source3/nsswitch/libwbclient/wbc_pam.c
@@ -1095,3 +1095,18 @@ done:
return wbc_status;
}
+
+/** @brief Authenticate a user with cached credentials
+ *
+ * @param *params Pointer to a wbcCredentialCacheParams structure
+ * @param **info Pointer to a pointer to a wbcCredentialCacheInfo structure
+ * @param **error Pointer to a pointer to a wbcAuthErrorInfo structure
+ *
+ * @return #wbcErr
+ **/
+wbcErr wbcCredentialCache(struct wbcCredentialCacheParams *params,
+ struct wbcCredentialCacheInfo **info,
+ struct wbcAuthErrorInfo **error)
+{
+ return WBC_ERR_NOT_IMPLEMENTED;
+}