From deea2272990a71b7e9632cc66754d03d481cb272 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Thu, 9 Feb 2006 02:02:01 +0000 Subject: [PATCH] Reverse order --- usr/local/www/ifstats.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/local/www/ifstats.php b/usr/local/www/ifstats.php index 6953bcd8fb..76fefa50a4 100644 --- a/usr/local/www/ifstats.php +++ b/usr/local/www/ifstats.php @@ -74,6 +74,6 @@ $temp = gettimeofday(); $timing = (double)$temp["sec"] + (double)$temp["usec"] / 1000000.0; - echo "$timing|" . $ifinfo['outbytes'] . "|" . $ifinfo['inbytes'] . "\n"; + echo "$timing|" . $ifinfo['inbytes'] . "|" . $ifinfo['outbytes'] . "\n"; ?> \ No newline at end of file