From: Dmitry V. Levin Date: Mon, 17 Jan 2011 23:24:54 +0000 (+0000) Subject: Fix stat64 decoding on mips X-Git-Tag: v4.6~54 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4dd54320b9d394dc76727b1cd395365e6c948b69;p=strace Fix stat64 decoding on mips * linux/mips/syscallent.h: Use sys_stat64() to decode stat64 syscall. This fixes Debian bug #599028. --- diff --git a/linux/mips/syscallent.h b/linux/mips/syscallent.h index d3d604fd..3d04701c 100644 --- a/linux/mips/syscallent.h +++ b/linux/mips/syscallent.h @@ -4215,7 +4215,7 @@ { 6, 0, sys_mmap, "mmap" }, /* 4210 */ { 4, TF, sys_truncate64, "truncate64" }, /* 4211 */ { 4, TD, sys_ftruncate64, "ftruncate64" }, /* 4212 */ - { 2, TF, printargs, "stat64" }, /* 4213 */ + { 2, TF, sys_stat64, "stat64" }, /* 4213 */ { 2, TF, sys_lstat64, "lstat64" }, /* 4214 */ { 2, TD, sys_fstat64, "fstat64" }, /* 4215 */ { 2, TF, sys_pivotroot, "pivot_root" }, /* 4216 */