Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv4820/arch/vax/lib
Modified Files:
strncpy_user.S
Log Message:
Apply Dave's fix from 2.4
Index: strncpy_user.S
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/lib/strncpy_user.S,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- strncpy_user.S 16 Feb 2003 13:17:20 -0000 1.5
+++ strncpy_user.S 3 Mar 2003 00:48:53 -0000 1.6
@@ -36,6 +36,6 @@
2: subl2 r1, r0
ret
.section .fixup, "ax"
-fault: movl -EFAULT, r0
+fault: movl $-EFAULT, r0
ret
.previous
|