Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/kern/uipc_socket.c,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- src/sys/kern/uipc_socket.c 1997/01/11 05:15:01 1.26 +++ src/sys/kern/uipc_socket.c 1997/06/11 10:04:09 1.27 @@ -1,4 +1,4 @@ -/* $NetBSD: uipc_socket.c,v 1.26 1997/01/11 05:15:01 thorpej Exp $ */ +/* $NetBSD: uipc_socket.c,v 1.27 1997/06/11 10:04:09 kleink Exp $ */ /* * Copyright (c) 1982, 1986, 1988, 1990, 1993 @@ -1030,7 +1030,7 @@ sogetopt(so, level, optname, mp) m->m_len = sizeof(struct timeval); mtod(m, struct timeval *)->tv_sec = val / hz; mtod(m, struct timeval *)->tv_usec = - (val % hz) / tick; + (val % hz) * tick; break; }