From: Christian Hesse <m...@eworm.de>

Shared code was moved to a function, but variable name has not been
updated. Use buf (passed to the function) instead of ptr.

This fixes regressen from upstream commit
7d6aadcd0a1dc795d72e1ab311aee333c763fe71.

Signed-off-by: Christian Hesse <m...@eworm.de>
---
 ip/tunnel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ip/tunnel.c b/ip/tunnel.c
index 1dd8092..39f825b 100644
--- a/ip/tunnel.c
+++ b/ip/tunnel.c
@@ -208,7 +208,7 @@ void tnl_print_stats(const char *buf)
                      tx_bytes, tx_packets, tx_errs, tx_drops,
                      tx_fifo, tx_colls, tx_carrier, rx_multi;
 
-       if (sscanf(ptr, "%lu%lu%lu%lu%lu%lu%lu%*d%lu%lu%lu%lu%lu%lu%lu",
+       if (sscanf(buf, "%lu%lu%lu%lu%lu%lu%lu%*d%lu%lu%lu%lu%lu%lu%lu",
                   &rx_bytes, &rx_packets, &rx_errs, &rx_drops,
                   &rx_fifo, &rx_frame, &rx_multi,
                   &tx_bytes, &tx_packets, &tx_errs, &tx_drops,
-- 
2.6.4

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to