jonah@uwocsd.UUCP (03/16/87)
I don't know if this has been reported before, but there is a bug in the event time conversion in libsun/events.c (X.V10R3). The implementor forgot to scale the seconds properly. Check your local copy to see. ----- Here's the bug: 100 xe->vse_time = (se->ie_time.tv_usec/10000 + se->ie_time.tv_sec); ----- And the fix: 110c xe->vse_time = (se->ie_time.tv_usec/10000 + se->ie_time.tv_sec*100);