Commit 85cb1ff9 authored by Connor McAdams's avatar Connor McAdams Committed by Alexandre Julliard

secur32: Fix trace in schannel pull_adapter function.

parent f3f8619f
......@@ -372,7 +372,7 @@ static ssize_t pull_adapter(gnutls_transport_ptr_t transport, void *buff, size_t
SIZE_T len = buff_len;
char *b;
TRACE("Push %lu bytes\n", len);
TRACE("Pull %lu bytes\n", len);
b = get_buffer(t, &t->in, &len);
if (!b)
......@@ -382,7 +382,7 @@ static ssize_t pull_adapter(gnutls_transport_ptr_t transport, void *buff, size_t
}
memcpy(buff, b, len);
t->in.offset += len;
TRACE("Wrote %lu bytes\n", len);
TRACE("Read %lu bytes\n", len);
return len;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment