diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-02-07 23:33:24 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-02-07 23:33:24 +0000 |
commit | 612b243179ef5ed96ad0d7d2e0f6b5d1a15d99e4 (patch) | |
tree | f753464b6799e43056a0fb0c0ff9e82beb6d5bf6 /usr | |
parent | bc1a05cbb90a1aef172999be2a30e74a90febc2a (diff) | |
download | pfsense-612b243179ef5ed96ad0d7d2e0f6b5d1a15d99e4.zip pfsense-612b243179ef5ed96ad0d7d2e0f6b5d1a15d99e4.tar.gz |
Swap values, they are reversed.
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/ifstats.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/ifstats.php b/usr/local/www/ifstats.php index 76fefa5..6953bcd 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['inbytes'] . "|" . $ifinfo['outbytes'] . "\n"; + echo "$timing|" . $ifinfo['outbytes'] . "|" . $ifinfo['inbytes'] . "\n"; ?>
\ No newline at end of file |