summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjkar8572 <jkar8572>2001-07-16 16:53:23 +0000
committerjkar8572 <jkar8572>2001-07-16 16:53:23 +0000
commitfdb2dfe9ba6ce5b370a5be88816ed1bd13241ca5 (patch)
tree451863f33f44b8a9c7f85454d7ec90a23d156dc3
parent88c7f535fbe80d96cf5ee15a3a2aa1bd1c535e1f (diff)
Fixed compilation bug.
Fixed typo.
-rw-r--r--Makefile.in2
-rw-r--r--quotaio_v1.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 0b4c794..0e3085d 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -42,7 +42,7 @@ IOOBJS = quotaio.o quotaio_v1.o quotaio_v2.o quotaio_rpc.o quotaio_xfs.o
IOOBJS += $(RPCCLNTOBJS)
LIBOBJS = bylabel.o common.o quotasys.o pot.o $(IOOBJS)
LIBOBJS += @LIBMALLOC@
-INCLUDE = common.h quotasys.h bylabel.h mntopt.h
+INCLUDE = common.h quotasys.h bylabel.h mntopt.h rquota.h
all: $(PROGS)
diff --git a/quotaio_v1.h b/quotaio_v1.h
index 21c5e85..a91a975 100644
--- a/quotaio_v1.h
+++ b/quotaio_v1.h
@@ -18,6 +18,7 @@ struct v1_disk_dqblk {
u_int32_t dqb_bsoftlimit; /* preferred limit on disk blks */
u_int32_t dqb_curblocks; /* current block count */
u_int32_t dqb_ihardlimit; /* maximum # allocated inodes */
+ u_int32_t dqb_isoftlimit; /* preferred limit on disk blks */
u_int32_t dqb_curinodes; /* current # allocated inodes */
time_t dqb_btime; /* time limit for excessive disk use */
time_t dqb_itime; /* time limit for excessive files */