From: Andrei Emeltchenko <[email protected]>
---
tools/l2test.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/l2test.c b/tools/l2test.c
index aaa1608..0993f74 100644
--- a/tools/l2test.c
+++ b/tools/l2test.c
@@ -782,7 +782,7 @@ static void dump_mode(int sk)
data_size = imtu;
if (defer_setup) {
- len = read(sk, buf, sizeof(buf));
+ len = read(sk, buf, data_size);
if (len < 0)
syslog(LOG_ERR, "Initial read error: %s (%d)",
strerror(errno), errno);
@@ -842,7 +842,7 @@ static void recv_mode(int sk)
data_size = imtu;
if (defer_setup) {
- len = read(sk, buf, sizeof(buf));
+ len = read(sk, buf, data_size);
if (len < 0)
syslog(LOG_ERR, "Initial read error: %s (%d)",
strerror(errno), errno);
--
1.8.3.2
Hi Andrei,
On Mon, Jan 13, 2014, Andrei Emeltchenko wrote:
> ---
> tools/l2test.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Applied. Thanks.
Johan