From c147aff8c4aa5dc40be9e7c365ec8e01479dba95 Mon Sep 17 00:00:00 2001 From: jkar8572 Date: Wed, 21 May 2003 19:51:10 +0000 Subject: Added forgotten handling of autofs mountpoints to rpc.rquotad. --- rquota_server.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'rquota_server.c') diff --git a/rquota_server.c b/rquota_server.c index c8430a1..fbc8f71 100644 --- a/rquota_server.c +++ b/rquota_server.c @@ -9,7 +9,7 @@ * * This part does the lookup of the info. * - * Version: $Id: rquota_server.c,v 1.11 2002/05/03 07:05:46 jkar8572 Exp $ + * Version: $Id: rquota_server.c,v 1.12 2003/05/21 19:51:10 jkar8572 Exp $ * * Author: Marco van Wieringen * @@ -49,6 +49,8 @@ int allow_severity = LOG_INFO; int deny_severity = LOG_WARNING; +extern int enable_autofs; + /* * Global unix authentication credentials. */ @@ -158,7 +160,7 @@ setquota_rslt *setquotainfo(int flags, caddr_t * argp, struct svc_req *rqstp) result.status = Q_NOQUOTA; result.setquota_rslt_u.sqr_rquota.rq_bsize = RPC_DQBLK_SIZE; - if (init_mounts_scan(1, &pathname, MS_NO_MNTPOINT) < 0) + if (init_mounts_scan(1, &pathname, MS_NO_MNTPOINT | (enable_autofs ? 0 : MS_NO_AUTOFS)) < 0) goto out; if (!(mnt = get_next_mount())) { end_mounts_scan(); @@ -242,7 +244,7 @@ getquota_rslt *getquotainfo(int flags, caddr_t * argp, struct svc_req * rqstp) result.status = Q_NOQUOTA; result.getquota_rslt_u.gqr_rquota.rq_bsize = RPC_DQBLK_SIZE; - if (init_mounts_scan(1, &pathname, MS_NO_MNTPOINT) < 0) + if (init_mounts_scan(1, &pathname, MS_NO_MNTPOINT | (enable_autofs ? 0 : MS_NO_AUTOFS)) < 0) goto out; if (!(mnt = get_next_mount())) { end_mounts_scan(); -- cgit v1.2.1