mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-12-26 12:27:52 +00:00
Revert "Bugfix: $addr and $addrs couldn't find ip's before the first update."
This reverts commit 8ffb8b238d
.
Surely, there is a better solution for that.
This commit is contained in:
parent
8ffb8b238d
commit
26ecdcf562
@ -405,6 +405,7 @@ static int pad_percents = 0;
|
||||
static char *global_text = 0;
|
||||
long global_text_lines;
|
||||
|
||||
static int total_updates;
|
||||
static int updatereset;
|
||||
|
||||
int check_contains(char *f, char *s)
|
||||
|
@ -332,8 +332,6 @@ enum x_initialiser_state {
|
||||
extern int output_methods;
|
||||
extern enum x_initialiser_state x_initialised;
|
||||
|
||||
int total_updates;
|
||||
|
||||
#define DEFAULT_TEXT_BUFFER_SIZE_S "##DEFAULT_TEXT_BUFFER_SIZE"
|
||||
|
||||
#endif /* _conky_h_ */
|
||||
|
@ -187,7 +187,7 @@ void update_net_stats()
|
||||
|
||||
/* get delta */
|
||||
delta = current_update_time - last_update_time;
|
||||
if (delta <= 0.0001 && total_updates != 0) {
|
||||
if (delta <= 0.0001) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -310,7 +310,7 @@ void update_net_stats(void)
|
||||
|
||||
/* get delta */
|
||||
delta = current_update_time - last_update_time;
|
||||
if (delta <= 0.0001 && total_updates != 0) {
|
||||
if (delta <= 0.0001) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -173,7 +173,7 @@ void update_net_stats()
|
||||
|
||||
/* get delta */
|
||||
delta = current_update_time - last_update_time;
|
||||
if (delta <= 0.0001 && total_updates != 0) {
|
||||
if (delta <= 0.0001) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -200,7 +200,7 @@ void update_net_stats()
|
||||
|
||||
/* get delta */
|
||||
delta = current_update_time - last_update_time;
|
||||
if (delta <= 0.0001 && total_updates != 0) {
|
||||
if (delta <= 0.0001) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user