summaryrefslogtreecommitdiff
path: root/libdiskfs/trans-callback.c
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1995-06-19 23:55:36 +0000
committerMichael I. Bushnell <mib@gnu.org>1995-06-19 23:55:36 +0000
commit152a0e10fc0219274f1b4a3f046df0ff9bd3fd9e (patch)
treef817fd259b2eb7a16717a149534a706295ceafd6 /libdiskfs/trans-callback.c
parente15a45e140883290d703b3337ebce412c4c1a234 (diff)
(_diskfs_translator_callback_fn): Fix typos so it compiles.
Diffstat (limited to 'libdiskfs/trans-callback.c')
-rw-r--r--libdiskfs/trans-callback.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/libdiskfs/trans-callback.c b/libdiskfs/trans-callback.c
index 703b4009..98e77b7d 100644
--- a/libdiskfs/trans-callback.c
+++ b/libdiskfs/trans-callback.c
@@ -19,14 +19,15 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "priv.h"
+#include <fcntl.h>
/* Callback function needed for calls to fshelp_fetch_root. See
<hurd/fshelp.h> for the interface description. */
static error_t
_diskfs_translator_callback_fn (void *cookie1, void *cookie2,
mach_port_t *underlying,
- uid_t *uid, gid_t *id, char **argz,
- int *argz_len, mach_port_t dotdot)
+ uid_t *uid, gid_t *gid, char **argz,
+ int *argz_len)
{
struct node *np = cookie1;
mach_port_t *dotdot = cookie2;
@@ -39,17 +40,17 @@ _diskfs_translator_callback_fn (void *cookie1, void *cookie2,
if (err)
return err;
- *uid = np->dn_stat.st_owner;
- *gid = np->dn_stat.st_group;
+ *uid = np->dn_stat.st_uid;
+ *gid = np->dn_stat.st_gid;
*underlying = (ports_get_right
(diskfs_make_protid
(diskfs_make_peropen (np,
- (O_READ|O_EXEC|
+ (O_READ|O_EXEC
| (diskfs_readonly ? O_WRITE : 0)),
*dotdot),
uid, 1, gid, 1)));
- mach_port_insert_right (mach_task_mself (), *underlying, *underlying,
+ mach_port_insert_right (mach_task_self (), *underlying, *underlying,
MACH_MSG_TYPE_MAKE_SEND);
return 0;
}