Skip to content
Snippets Groups Projects
Commit 7ad69f59 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

removed gcc -Wshadow warning

parent 83b82e44
No related branches found
No related tags found
No related merge requests found
......@@ -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)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment