- Fix fchflags(). (typo) [1] - Fix hw.availpages sysctl. [1] - Fix sysctl kern.usrstack and kern.ps_strings invoked from sysctl(8). - Bump PORTREVISION. Reported by: sbruno [1]
12 lines
343 B
C
12 lines
343 B
C
--- a/bsd-user/syscall.c
|
|
+++ b/bsd-user/syscall.c
|
|
@@ -627,7 +627,7 @@ abi_long do_freebsd_syscall(void *cpu_en
|
|
break;
|
|
|
|
case TARGET_FREEBSD_NR_fchflags: /* fchflags(2) */
|
|
- ret = do_bsd_fchflags(arg2, arg2);
|
|
+ ret = do_bsd_fchflags(arg1, arg2);
|
|
break;
|
|
|
|
case TARGET_FREEBSD_NR_chroot: /* chroot(2) */
|