[BACK]Return to uipc_socket.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / kern

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/kern/uipc_socket.c between version 1.26 and 1.27

version 1.26, 1997/01/11 05:15:01 version 1.27, 1997/06/11 10:04:09
Line 1030  sogetopt(so, level, optname, mp)
Line 1030  sogetopt(so, level, optname, mp)
                         m->m_len = sizeof(struct timeval);                          m->m_len = sizeof(struct timeval);
                         mtod(m, struct timeval *)->tv_sec = val / hz;                          mtod(m, struct timeval *)->tv_sec = val / hz;
                         mtod(m, struct timeval *)->tv_usec =                          mtod(m, struct timeval *)->tv_usec =
                             (val % hz) / tick;                              (val % hz) * tick;
                         break;                          break;
                     }                      }
   

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27

CVSweb <webmaster@jp.NetBSD.org>