Remove some strange network related code
authorPavel Labath <pavelo@centrum.sk>
Mon, 7 Dec 2009 20:13:04 +0000 (21:13 +0100)
committerPavel Labath <pavelo@centrum.sk>
Mon, 7 Dec 2009 20:32:22 +0000 (21:32 +0100)
Reported by norsetto.
This code disallows network traffic to be 0.
Brenden says it once had a purpose, but noone can think of what would that be atm.

src/linux.c

index b4fc672..12b0104 100644 (file)
@@ -464,12 +464,6 @@ void update_net_stats(void)
                        curtmp1 = curtmp1 + ns->net_rec[i];
                        curtmp2 = curtmp2 + ns->net_trans[i];
                }
-               if (curtmp1 == 0) {
-                       curtmp1 = 1;
-               }
-               if (curtmp2 == 0) {
-                       curtmp2 = 1;
-               }
                ns->recv_speed = curtmp1 / (double) info.net_avg_samples;
                ns->trans_speed = curtmp2 / (double) info.net_avg_samples;
                if (info.net_avg_samples > 1) {