diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-07-09 23:52:03 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-07-09 23:52:03 +0000 |
commit | c54c3ede23d618b62ce9da2e8bd64e8fcdd4b8e9 (patch) | |
tree | 84125ea516fb07e9ed3de64ae5419146b0d9e619 /sys/compat/freebsd/freebsd_file.c | |
parent | d8175701c7a9904a03dd89eef6cfcb40409c83eb (diff) |
Rename ostat -> stat43 to disambiguate from upcoming struct stat changes.
Idea from NetBSD, OK deraadt@
Diffstat (limited to 'sys/compat/freebsd/freebsd_file.c')
-rw-r--r-- | sys/compat/freebsd/freebsd_file.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/freebsd/freebsd_file.c b/sys/compat/freebsd/freebsd_file.c index b4388177509..56baf4b0b11 100644 --- a/sys/compat/freebsd/freebsd_file.c +++ b/sys/compat/freebsd/freebsd_file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: freebsd_file.c,v 1.17 2003/08/15 20:32:15 tedu Exp $ */ +/* $OpenBSD: freebsd_file.c,v 1.18 2004/07/09 23:52:02 millert Exp $ */ /* $NetBSD: freebsd_file.c,v 1.3 1996/05/03 17:03:09 christos Exp $ */ /* @@ -339,7 +339,7 @@ compat_43_freebsd_sys_stat(p, v, retval) { struct compat_43_freebsd_sys_stat_args /* { syscallarg(char *) path; - syscallarg(struct ostat *) ub; + syscallarg(struct stat43 *) ub; } */ *uap = v; caddr_t sg = stackgap_init(p->p_emul); @@ -355,7 +355,7 @@ compat_43_freebsd_sys_lstat(p, v, retval) { struct compat_43_freebsd_sys_lstat_args /* { syscallarg(char *) path; - syscallarg(struct ostat *) ub; + syscallarg(struct stat43 *) ub; } */ *uap = v; caddr_t sg = stackgap_init(p->p_emul); |