1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

Fix --enable-developer shadow warning

(This used to be commit 6a919bcf3d)
This commit is contained in:
Andrew Bartlett 2001-11-26 07:53:33 +00:00
parent f1db6a0c6c
commit fc93f4f403

View File

@ -67,7 +67,7 @@ static char *cli_smb_errstr(struct cli_state *cli)
char *cli_errstr(struct cli_state *cli)
{
static fstring error_message;
static fstring cli_error_message;
uint32 flgs2 = SVAL(cli->inbuf,smb_flg2), errnum;
uint8 errclass;
int i;
@ -93,10 +93,10 @@ char *cli_errstr(struct cli_state *cli)
}
}
slprintf(error_message, sizeof(error_message) - 1, "code %d",
slprintf(cli_error_message, sizeof(cli_error_message) - 1, "code %d",
cli->rap_error);
return error_message;
return cli_error_message;
}