X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=eggui.c;h=b369e863fbde01af7c4bdb55611eb4ce0dbe0ac8;hb=3cdf178c314af7b43428f523118d80ab17c6cfde;hp=e3eb431fd3451681939b1df96c6df2dff0848e96;hpb=9c19f1c350c5d075a47a193c1b5b2d9f8fa41f04;p=debian%2Fgcpegg diff --git a/eggui.c b/eggui.c index e3eb431..b369e86 100644 --- a/eggui.c +++ b/eggui.c @@ -126,17 +126,20 @@ int32 UIUpdate(int32 cres, CollectRecord *coll) { printw("EGG %s ID %d REG %s %s", eggtable[0].name, eggtable[0].id, configuredREG->reg_name, Version); - tmstr = ctime(&inittm); tmstr[strlen(tmstr)-1] = 0; + time_t inittm_val = inittm; + tmstr = ctime(&inittm_val); tmstr[strlen(tmstr)-1] = 0; move(line++, 5); printw("Up since %25s", tmstr); move(line++, 5); now = getzulutime(NULL); - tmstr = ctime(&now); tmstr[strlen(tmstr)-1] = 0; + time_t now_val = now; + tmstr = ctime(&now_val); tmstr[strlen(tmstr)-1] = 0; printw("Last sample at %25s", tmstr); move(line++, 5); - tmstr = ctime(&lastDataSent); + time_t lastDataSent_val = lastDataSent; + tmstr = ctime(&lastDataSent_val); tmstr[strlen(tmstr)-1] = 0; printw("Last packet at %25s", lastDataSent == 0 ? "Never" : tmstr);