aboutsummaryrefslogtreecommitdiff
path: root/libnetfs/dir-rmdir.c
diff options
context:
space:
mode:
Diffstat (limited to 'libnetfs/dir-rmdir.c')
-rw-r--r--libnetfs/dir-rmdir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libnetfs/dir-rmdir.c b/libnetfs/dir-rmdir.c
index 4f9e962a..9a5941d3 100644
--- a/libnetfs/dir-rmdir.c
+++ b/libnetfs/dir-rmdir.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 1995 Free Software Foundation, Inc.
+ Copyright (C) 1995, 1996 Free Software Foundation, Inc.
Written by Michael I. Bushnell, p/BSG.
This file is part of the GNU Hurd.
@@ -30,7 +30,7 @@ netfs_S_dir_rmdir (struct protid *diruser, char *name)
return EOPNOTSUPP;
mutex_lock (&diruser->po->np->lock);
- err = netfs_attempt_rmdir (diruser->credential, diruser->po->np, name);
+ err = netfs_attempt_rmdir (diruser->user, diruser->po->np, name);
mutex_unlock (&diruser->po->np->lock);
return err;
}