1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

s3: Avoid an explicit ZERO_STRUCT

This commit is contained in:
Volker Lendecke 2010-09-25 15:40:54 -07:00
parent 6ee0d866c2
commit dda1dd63d3

View File

@ -141,9 +141,7 @@ static NTSTATUS check_guest_password(struct auth_serversupplied_info **server_in
struct auth_usersupplied_info *user_info = NULL;
NTSTATUS nt_status;
unsigned char chal[8];
ZERO_STRUCT(chal);
static unsigned char chal[8] = { 0, };
DEBUG(3,("Got anonymous request\n"));