1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 21:49:07 +00:00

Bugfix: $addr and $addrs couldn't find ip's before the first update.

When you started "$updates|${addr eth0}" displayed "0|No Address",
after the first update you got something normal like "1|192.168.0.1"
This patch should fix this.
This commit is contained in:
Nikolas Garofil 2009-06-06 17:41:51 +02:00
parent 22733a0b4a
commit 8ffb8b238d
6 changed files with 6 additions and 5 deletions

View File

@ -405,7 +405,6 @@ 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)

View File

@ -332,6 +332,8 @@ 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_ */

View File

@ -187,7 +187,7 @@ void update_net_stats()
/* get delta */
delta = current_update_time - last_update_time;
if (delta <= 0.0001) {
if (delta <= 0.0001 && total_updates != 0) {
return;
}

View File

@ -310,7 +310,7 @@ void update_net_stats(void)
/* get delta */
delta = current_update_time - last_update_time;
if (delta <= 0.0001) {
if (delta <= 0.0001 && total_updates != 0) {
return;
}

View File

@ -173,7 +173,7 @@ void update_net_stats()
/* get delta */
delta = current_update_time - last_update_time;
if (delta <= 0.0001) {
if (delta <= 0.0001 && total_updates != 0) {
return;
}

View File

@ -200,7 +200,7 @@ void update_net_stats()
/* get delta */
delta = current_update_time - last_update_time;
if (delta <= 0.0001) {
if (delta <= 0.0001 && total_updates != 0) {
return;
}