# HG changeset patch
# User Martin Troxler <ch1010277@ch10pc446>
# Date 1292499676 -3600
# Node ID da133ec36c3a2bbd046bfb535bffb239f51878be
# Parent  393e7aef6706214cdd3453fe7afd731f8557096c
fixed 'ethercat eoe' command: interchanged rx/tx bytes/rates

diff -r 393e7aef6706 -r da133ec36c3a master/cdev.c
--- a/master/cdev.c	Thu Dec 16 12:31:38 2010 +0100
+++ b/master/cdev.c	Thu Dec 16 12:41:16 2010 +0100
@@ -1617,10 +1617,10 @@
     }
     snprintf(data.name, EC_DATAGRAM_NAME_SIZE, eoe->dev->name);
     data.open = eoe->opened;
-    data.rx_bytes = eoe->stats.tx_bytes;
+    data.tx_bytes = eoe->stats.tx_bytes;
+    data.tx_rate = eoe->tx_rate;
+    data.rx_bytes = eoe->stats.rx_bytes;
     data.rx_rate = eoe->tx_rate;
-    data.tx_bytes = eoe->stats.rx_bytes;
-    data.tx_rate = eoe->tx_rate;
     data.tx_queued_frames = eoe->tx_queued_frames;
     data.tx_queue_size = eoe->tx_queue_size;