blob: d3ef7a7a1d642e54af10395568e68dc7a4c866f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
--- nfs-utils-0.3.3/utils/rquotad/rquota_server.c.orig Wed Jun 27 12:45:56 2001
+++ nfs-utils-0.3.3/utils/rquotad/rquota_server.c Thu Nov 11 14:36:39 2004
@@ -76,6 +76,7 @@ getquota_rslt *getquotainfo(int flags, c
char *pathname, *qfpathname;
int fd, err, id, type;
struct stat stm, stn;
+ struct rquota *rquota;
/*
* First check authentication.
@@ -168,8 +169,16 @@ getquota_rslt *getquotainfo(int flags, c
* Make a copy of the info into the last part of the remote quota
* struct which is exactly the same.
*/
- memcpy((caddr_t *)&result.getquota_rslt_u.gqr_rquota.rq_bhardlimit,
- (caddr_t *)&dq_dqb, sizeof(struct dqblk));
+
+ rquota = &result.getquota_rslt_u.gqr_rquota;
+ rquota->rq_bhardlimit = dq_dqb.dqb_bhardlimit;
+ rquota->rq_bsoftlimit = dq_dqb.dqb_bsoftlimit;;
+ rquota->rq_curblocks = dq_dqb.dqb_curblocks;
+ rquota->rq_fhardlimit = dq_dqb.dqb_ihardlimit;
+ rquota->rq_fsoftlimit = dq_dqb.dqb_isoftlimit;
+ rquota->rq_curfiles = dq_dqb.dqb_curinodes;
+ rquota->rq_btimeleft = dq_dqb.dqb_btime;
+ rquota->rq_ftimeleft = dq_dqb.dqb_itime;
return(&result);
}
|