From 1883e1ee6514b304d0bb6fa5705644230b145a4b Mon Sep 17 00:00:00 2001 From: jkar8572 Date: Fri, 3 May 2002 07:05:46 +0000 Subject: Fixed bug with rpc.rquotad bad path processing. --- rquota_server.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'rquota_server.c') diff --git a/rquota_server.c b/rquota_server.c index 59c54f9..c8430a1 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.10 2001/11/26 18:18:25 jkar8572 Exp $ + * Version: $Id: rquota_server.c,v 1.11 2002/05/03 07:05:46 jkar8572 Exp $ * * Author: Marco van Wieringen * @@ -158,9 +158,9 @@ 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) < 0) + if (init_mounts_scan(1, &pathname, MS_NO_MNTPOINT) < 0) goto out; - if (!(mnt = get_next_mount(MS_NO_MNTPOINT))) { + if (!(mnt = get_next_mount())) { end_mounts_scan(); goto out; } @@ -242,9 +242,9 @@ 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) < 0) + if (init_mounts_scan(1, &pathname, MS_NO_MNTPOINT) < 0) goto out; - if (!(mnt = get_next_mount(MS_NO_MNTPOINT))) { + if (!(mnt = get_next_mount())) { end_mounts_scan(); goto out; } -- cgit v1.2.3