Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.3 4.3bsd-beta 6/6/85; site seismo.CSS.GOV Path: utzoo!watmath!clyde!cbosgd!gatech!seismo!keith From: keith@seismo.CSS.GOV (Keith Bostic) Newsgroups: net.bugs.2bsd Subject: CSS/Harvard 2.9BSD bug report #11 Message-ID: <436@seismo.CSS.GOV> Date: Wed, 16-Oct-85 12:59:55 EDT Article-I.D.: seismo.436 Posted: Wed Oct 16 12:59:55 1985 Date-Received: Fri, 18-Oct-85 00:23:44 EDT Organization: Center for Seismic Studies, Arlington, VA Lines: 18 Keywords: NOVL, overlaid Subject: Number of overlays set incorrectly. Index: sys/sys 2.9BSD Description: Number of overlays is incorrectly set in ureg.c and sig.c. Fix: Line in ureg.c: ts = u.u_ovdata.uo_ov_offst[7]; should be: ts = u.u_ovdata.uo_ov_offst[NOVL]; Line in sig.c: if ((p == &u.u_ovdata.uo_curov) && ((ipc.ip_data >= 0) && (ipc.ip_data <= 7) && u.u_ovdata.uo_ovbase)) { should be: if ((p == &u.u_ovdata.uo_curov) && ((ipc.ip_data >= 0) && (ipc.ip_data <= NOVL) && u.u_ovdata.uo_ovbase)) {