2003-02-23 Roland McGrath <roland@redhat.com>

* process.c (sys_getresuid): Fix typos in argument access.
	Reported by Anton Blanchard <anton@samba.org>.
This commit is contained in:
Roland McGrath 2003-02-24 07:13:51 +00:00
parent 45be9607ce
commit 9bd6b4234b

View File

@ -1092,12 +1092,12 @@ sys_getresuid(tcp)
tprintf("%#lx, ", tcp->u_arg[0]);
else
tprintf("ruid %lu, ", (unsigned long) uid);
if (umove(tcp, tcp->u_arg[0], &uid) < 0)
tprintf("%#lx, ", tcp->u_arg[0]);
if (umove(tcp, tcp->u_arg[1], &uid) < 0)
tprintf("%#lx, ", tcp->u_arg[1]);
else
tprintf("euid %lu, ", (unsigned long) uid);
if (umove(tcp, tcp->u_arg[0], &uid) < 0)
tprintf("%#lx", tcp->u_arg[0]);
if (umove(tcp, tcp->u_arg[2], &uid) < 0)
tprintf("%#lx", tcp->u_arg[2]);
else
tprintf("suid %lu", (unsigned long) uid);
}