Browse Source

do not bother with rmeoval events, we remove sensors whoch vanished or

are not a timedelta sensor any more on query on the fly anyway
OPENBSD_4_0
henning 18 years ago
parent
commit
494460017f
1 changed files with 1 additions and 11 deletions
  1. +1
    -11
      src/usr.sbin/ntpd/sensors.c

+ 1
- 11
src/usr.sbin/ntpd/sensors.c View File

@ -1,4 +1,4 @@
/* $OpenBSD: sensors.c,v 1.8 2006/05/28 03:23:08 henning Exp $ */
/* $OpenBSD: sensors.c,v 1.9 2006/05/28 16:39:12 henning Exp $ */
/*
* Copyright (c) 2006 Henning Brauer <henning@openbsd.org>
@ -212,16 +212,6 @@ sensor_hotplugevent(int fd)
he.he_devid > 0)
sensor_probe(he.he_devid);
break;
case HOTPLUG_DEVDT:
if (he.he_devclass == DV_DULL &&
he.he_devid > 0) {
struct ntp_sensor *s;
s = sensor_byid(he.he_devid);
if (s != NULL)
sensor_remove(s);
}
break;
default: /* ignore */
break;
}


Loading…
Cancel
Save