mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-19 07:43:01 +00:00
Fix for #569
This commit is contained in:
parent
08af4fe7d0
commit
f3cd841bd1
5 changed files with 4 additions and 5 deletions
|
|
@ -38,7 +38,7 @@ GenericHashEntry::~GenericHashEntry() {
|
|||
void GenericHashEntry::updateSeen(time_t _last_seen) {
|
||||
last_seen = _last_seen;
|
||||
|
||||
if(first_seen == 0)
|
||||
if((first_seen == 0) || (first_seen > last_seen))
|
||||
first_seen = last_seen;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue