Skip site navigation (1)Skip section navigation (2)
Date:      4 Mar 96 20:53:28 GMT
From:      peter@jhome.DIALix.COM (Peter Wemm)
To:        freebsd-questions@freebsd.org
Subject:   Re: Netscape an not right scroller?
Message-ID:  <peter.825972808@jhome.DIALix.COM>
References:  <199603032317.SAA02433@steffi.dgsys.com>, <9603041415.AA06078@zappa.cs.uncc.edu>

next in thread | previous in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?peter.825972808>