From dc9f30b8b0ace8d6e2c8c0cbed537fde68d1556a Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 6 May 2006 19:24:35 +0000 Subject: r15475: Ugly and disgusting patch to fix the username map problem I created by changing the token generation. I *hate* this code! Jerry, you have been looking at this as well, can you double-check that I did not screw it up? Thanks, Volker (This used to be commit 2765c4ff8d44c970db3e075b0a2412662f1936c6) --- source3/include/auth.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/include') diff --git a/source3/include/auth.h b/source3/include/auth.h index 465892905a..de75ff68f6 100644 --- a/source3/include/auth.h +++ b/source3/include/auth.h @@ -29,6 +29,7 @@ typedef struct auth_usersupplied_info { BOOL encrypted; + BOOL was_mapped; /* Did the username map actually match? */ char *client_domain; /* domain name string */ char *domain; /* domain name after mapping */ char *internal_username; /* username after mapping */ @@ -67,6 +68,7 @@ typedef struct auth_serversupplied_info { void *pam_handle; + BOOL was_mapped; /* Did the username map match? */ char *unix_name; } auth_serversupplied_info; -- cgit