diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-07-06 07:28:00 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-07-06 07:28:00 +0000 |
commit | aa19b57f6091518fcdf3122551561a7a80f613e7 (patch) | |
tree | 4705250b97aa081d1a81a0c0628efa1cb2ec63dd /sys/compat/hpux/hpux_file.c | |
parent | 1377e1a824ff32aa9bf8b6d3f0eba50fa581801a (diff) |
sync with NetBSD, 970705.
Diffstat (limited to 'sys/compat/hpux/hpux_file.c')
-rw-r--r-- | sys/compat/hpux/hpux_file.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/sys/compat/hpux/hpux_file.c b/sys/compat/hpux/hpux_file.c index 4c59f528e43..e38b32897a9 100644 --- a/sys/compat/hpux/hpux_file.c +++ b/sys/compat/hpux/hpux_file.c @@ -1,8 +1,8 @@ -/* $OpenBSD: hpux_file.c,v 1.5 1997/04/16 09:18:05 downsj Exp $ */ -/* $NetBSD: hpux_file.c,v 1.4 1997/04/01 19:59:01 scottr Exp $ */ +/* $OpenBSD: hpux_file.c,v 1.6 1997/07/06 07:27:59 downsj Exp $ */ +/* $NetBSD: hpux_file.c,v 1.5 1997/04/27 21:40:48 thorpej Exp $ */ /* - * Copyright (c) 1995 Jason R. Thorpe. All rights reserved. + * Copyright (c) 1995, 1997 Jason R. Thorpe. All rights reserved. * Copyright (c) 1988 University of Utah. * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -571,12 +571,6 @@ bsd_to_hpux_stat(sb, hsb) hsb->hst_old_uid = (u_short)sb->st_uid; hsb->hst_old_gid = (u_short)sb->st_gid; - /* - * Call machine-dependent stat conversion. Is it just me - * who thinks HP-UX device semantics are strange?! - */ - hpux_cpu_bsd_to_hpux_stat(sb, hsb); - if (sb->st_size < (off_t)(((off_t)1) << 32)) hsb->hst_size = (long)sb->st_size; else |