Author: vlendec Date: 2006-05-06 15:46:53 +0000 (Sat, 06 May 2006) New Revision: 15472
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=15472 Log: Remove an unused function parameter Modified: branches/SAMBA_3_0/source/auth/auth_domain.c branches/SAMBA_3_0/source/auth/auth_util.c branches/SAMBA_3_0/source/auth/auth_winbind.c branches/SAMBA_3_0/source/smbd/sesssetup.c trunk/source/auth/auth_domain.c trunk/source/auth/auth_util.c trunk/source/auth/auth_winbind.c trunk/source/smbd/sesssetup.c Changeset: Modified: branches/SAMBA_3_0/source/auth/auth_domain.c =================================================================== --- branches/SAMBA_3_0/source/auth/auth_domain.c 2006-05-06 13:33:14 UTC (rev 15471) +++ branches/SAMBA_3_0/source/auth/auth_domain.c 2006-05-06 15:46:53 UTC (rev 15472) @@ -251,7 +251,6 @@ } } else { nt_status = make_server_info_info3(mem_ctx, - user_info->internal_username, user_info->smb_name, domain, server_info, Modified: branches/SAMBA_3_0/source/auth/auth_util.c =================================================================== --- branches/SAMBA_3_0/source/auth/auth_util.c 2006-05-06 13:33:14 UTC (rev 15471) +++ branches/SAMBA_3_0/source/auth/auth_util.c 2006-05-06 15:46:53 UTC (rev 15472) @@ -1496,7 +1496,6 @@ ***************************************************************************/ NTSTATUS make_server_info_info3(TALLOC_CTX *mem_ctx, - const char *internal_username, const char *sent_nt_username, const char *domain, auth_serversupplied_info **server_info, Modified: branches/SAMBA_3_0/source/auth/auth_winbind.c =================================================================== --- branches/SAMBA_3_0/source/auth/auth_winbind.c 2006-05-06 13:33:14 UTC (rev 15471) +++ branches/SAMBA_3_0/source/auth/auth_winbind.c 2006-05-06 15:46:53 UTC (rev 15472) @@ -128,7 +128,6 @@ if (NT_STATUS_IS_OK(nt_status)) { if (NT_STATUS_IS_OK(nt_status = get_info3_from_ndr(mem_ctx, &response, &info3))) { nt_status = make_server_info_info3(mem_ctx, - user_info->internal_username, user_info->smb_name, user_info->domain, server_info, &info3); } Modified: branches/SAMBA_3_0/source/smbd/sesssetup.c =================================================================== --- branches/SAMBA_3_0/source/smbd/sesssetup.c 2006-05-06 13:33:14 UTC (rev 15471) +++ branches/SAMBA_3_0/source/smbd/sesssetup.c 2006-05-06 15:46:53 UTC (rev 15472) @@ -322,7 +322,7 @@ if ( map_domainuser_to_guest ) { make_server_info_guest(&server_info); } else if (logon_info) { - ret = make_server_info_info3(mem_ctx, real_username, real_username, domain, + ret = make_server_info_info3(mem_ctx, real_username, domain, &server_info, &logon_info->info3); if ( !NT_STATUS_IS_OK(ret) ) { DEBUG(1,("make_server_info_info3 failed: %s!\n", Modified: trunk/source/auth/auth_domain.c =================================================================== --- trunk/source/auth/auth_domain.c 2006-05-06 13:33:14 UTC (rev 15471) +++ trunk/source/auth/auth_domain.c 2006-05-06 15:46:53 UTC (rev 15472) @@ -251,7 +251,6 @@ } } else { nt_status = make_server_info_info3(mem_ctx, - user_info->internal_username, user_info->smb_name, domain, server_info, Modified: trunk/source/auth/auth_util.c =================================================================== --- trunk/source/auth/auth_util.c 2006-05-06 13:33:14 UTC (rev 15471) +++ trunk/source/auth/auth_util.c 2006-05-06 15:46:53 UTC (rev 15472) @@ -1496,7 +1496,6 @@ ***************************************************************************/ NTSTATUS make_server_info_info3(TALLOC_CTX *mem_ctx, - const char *internal_username, const char *sent_nt_username, const char *domain, auth_serversupplied_info **server_info, Modified: trunk/source/auth/auth_winbind.c =================================================================== --- trunk/source/auth/auth_winbind.c 2006-05-06 13:33:14 UTC (rev 15471) +++ trunk/source/auth/auth_winbind.c 2006-05-06 15:46:53 UTC (rev 15472) @@ -128,7 +128,6 @@ if (NT_STATUS_IS_OK(nt_status)) { if (NT_STATUS_IS_OK(nt_status = get_info3_from_ndr(mem_ctx, &response, &info3))) { nt_status = make_server_info_info3(mem_ctx, - user_info->internal_username, user_info->smb_name, user_info->domain, server_info, &info3); } Modified: trunk/source/smbd/sesssetup.c =================================================================== --- trunk/source/smbd/sesssetup.c 2006-05-06 13:33:14 UTC (rev 15471) +++ trunk/source/smbd/sesssetup.c 2006-05-06 15:46:53 UTC (rev 15472) @@ -322,7 +322,7 @@ if ( map_domainuser_to_guest ) { make_server_info_guest(&server_info); } else if (logon_info) { - ret = make_server_info_info3(mem_ctx, real_username, real_username, domain, + ret = make_server_info_info3(mem_ctx, real_username, domain, &server_info, &logon_info->info3); if ( !NT_STATUS_IS_OK(ret) ) { DEBUG(1,("make_server_info_info3 failed: %s!\n",
