From owner-freebsd-questions Mon Mar 4 12:55:10 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id MAA26763 for questions-outgoing; Mon, 4 Mar 1996 12:55:10 -0800 (PST) Received: from haywire.DIALix.COM (root@haywire.DIALix.COM [192.203.228.65]) by freefall.freebsd.org (8.7.3/8.7.3) with ESMTP id MAA26758 for ; Mon, 4 Mar 1996 12:55:06 -0800 (PST) Received: (from news@localhost) by haywire.DIALix.COM (8.7.4/8.6.12) id EAA07888 for freebsd-questions@freebsd.org; Tue, 5 Mar 1996 04:56:31 +0800 (WST) X-Authentication-Warning: haywire.DIALix.COM: news set sender to usenet-request@haywire.dialix.com using -f Received: from GATEWAY by haywire.DIALix.COM with netnews for freebsd-questions@freebsd.org (problems to: usenet@haywire.dialix.com) To: freebsd-questions@freebsd.org Date: 4 Mar 96 20:53:28 GMT From: peter@jhome.DIALix.COM (Peter Wemm) Message-ID: Organization: DIALix Services, Perth, Australia. References: <199603032317.SAA02433@steffi.dgsys.com>, <9603041415.AA06078@zappa.cs.uncc.edu> Subject: Re: Netscape an not right scroller? Sender: owner-questions@freebsd.org Precedence: bulk jlrobins@zappa.cs.uncc.edu (James Robinson) writes: >> >> Is this the correct behaviour when running Netscape in Linux compat? >> >> ie. I have to click on the window to have a right scroller appear. >> >> FREEBSD 2.1 >> >I have seen this also. You can "trick" it to draw the scrollbar by >hitting the down arrow key as well. >James You may like to try applying this patch to the kernel source and rebuilding your linux lkm... Index: linux_misc.c =================================================================== RCS file: /home/ncvs/src/sys/i386/linux/linux_misc.c,v retrieving revision 1.1.4.1 retrieving revision 1.1.4.2 diff -u -r1.1.4.1 -r1.1.4.2 --- linux_misc.c 1995/10/07 12:31:18 1.1.4.1 +++ linux_misc.c 1996/03/04 19:46:16 1.1.4.2 @@ -493,7 +493,7 @@ #endif microtime(&tv); tm = tv.tv_sec; - if (error = copyout(&tm, args->tm, sizeof(linux_time_t))) + if (args->tm && (error = copyout(&tm, args->tm, sizeof(linux_time_t)))) return error; *retval = tv.tv_sec; return 0; The latest 2.1-stable and 2.2-current have this patch already. Cheers, -Peter