From 202bcf9096e53d94b294936d6144ae77f1536b72 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 17 Dec 2013 19:35:37 +0100 Subject: libcli/auth: set the return_authenticator->timestamp = 0 This is what windows returns, the value is ignored by the client anyway. Signed-off-by: Stefan Metzmacher Reviewed-by: Andrew Bartlett --- libcli/auth/credentials.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcli/auth/credentials.c b/libcli/auth/credentials.c index 1f664d35b6..197db86818 100644 --- a/libcli/auth/credentials.c +++ b/libcli/auth/credentials.c @@ -479,7 +479,7 @@ NTSTATUS netlogon_creds_server_step_check(struct netlogon_creds_CredentialState netlogon_creds_step(creds); if (netlogon_creds_server_check_internal(creds, &received_authenticator->cred)) { return_authenticator->cred = creds->server; - return_authenticator->timestamp = creds->sequence; + return_authenticator->timestamp = 0; return NT_STATUS_OK; } else { ZERO_STRUCTP(return_authenticator); -- cgit