mirror of
https://github.com/curl/curl.git
synced 2024-11-27 05:50:21 +08:00
removed gcc -Wshadow warning
This commit is contained in:
parent
83b82e4472
commit
7ad69f59c7
@ -870,13 +870,13 @@ void telrcv(struct connectdata *conn,
|
||||
int count) /* Number of bytes received */
|
||||
{
|
||||
unsigned char c;
|
||||
int index = 0;
|
||||
int in = 0;
|
||||
struct SessionHandle *data = conn->data;
|
||||
struct TELNET *tn = (struct TELNET *)conn->proto.telnet;
|
||||
|
||||
while(count--)
|
||||
{
|
||||
c = inbuf[index++];
|
||||
c = inbuf[in++];
|
||||
|
||||
switch (tn->telrcv_state)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user