Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv14315
Modified Files:
strncpy_user.S
Log Message:
DA: fix fault code for strncpy
Index: strncpy_user.S
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/lib/strncpy_user.S,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- strncpy_user.S 16 Feb 2003 08:01:55 -0000 1.4
+++ strncpy_user.S 28 Feb 2003 06:14:08 -0000 1.5
@@ -36,6 +36,6 @@
2: subl2 %r1, %r0
ret
.section .fixup, "ax"
-fault: movl -EFAULT, %r0
+fault: movl $-EFAULT, %r0
ret
.previous
|