summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorMax Matveev <makc@redhat.com>2011-08-16 07:57:43 -0400
committerSteve Dickson <steved@redhat.com>2011-08-16 12:46:07 -0400
commit54f06bfefc4841657aa585dd791ebd2f65a3c299 (patch)
tree4c62abb1cd759ce3792afddb3ba67975bc75891e /utils
parent151a82d9c80315caff7081f16916d1913a67033a (diff)
downloadnfs-utils-54f06bfefc4841657aa585dd791ebd2f65a3c299.tar.gz
nfs-utils-54f06bfefc4841657aa585dd791ebd2f65a3c299.tar.xz
nfs-utils-54f06bfefc4841657aa585dd791ebd2f65a3c299.zip
mount.nfs: submarvellous messages from mount.nfs
Consider a setup where mountd on the server is controlled via tcp_wrappers (usual RHEL setup) and will not process calls from a particular client because of something in /etc/hosts.deny. When such client attempts to do v3 mount, the error message printed by mount.nfs is misleading. This patch changes that error message from: mount.nfs: Argument list too long to mount.nfs: access denied by server while mounting server:/export Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'utils')
-rw-r--r--utils/mount/stropts.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/mount/stropts.c b/utils/mount/stropts.c
index f1aa503..4d023d6 100644
--- a/utils/mount/stropts.c
+++ b/utils/mount/stropts.c
@@ -538,6 +538,8 @@ nfs_rewrite_pmap_mount_options(struct mount_options *options)
errno = ESPIPE;
if (rpc_createerr.cf_stat == RPC_PROGNOTREGISTERED)
errno = EOPNOTSUPP;
+ else if (rpc_createerr.cf_stat == RPC_AUTHERROR)
+ errno = EACCES;
else if (rpc_createerr.cf_error.re_errno != 0)
errno = rpc_createerr.cf_error.re_errno;
return 0;