summaryrefslogtreecommitdiff
path: root/quotasys.h
diff options
context:
space:
mode:
authorjkar8572 <jkar8572>2002-05-03 07:05:46 +0000
committerjkar8572 <jkar8572>2002-05-03 07:05:46 +0000
commit1883e1ee6514b304d0bb6fa5705644230b145a4b (patch)
treeff59246795e0be3744869e440c613160d269b526 /quotasys.h
parent04bc20aa76dc9743a3d81ad48427860e0f3f3b2f (diff)
downloadlinuxquota-1883e1ee6514b304d0bb6fa5705644230b145a4b.tar.gz
Fixed bug with rpc.rquotad bad path processing.
Diffstat (limited to 'quotasys.h')
-rw-r--r--quotasys.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/quotasys.h b/quotasys.h
index db85490..8e95c13 100644
--- a/quotasys.h
+++ b/quotasys.h
@@ -113,13 +113,13 @@ void init_kernel_interface(void);
/* Check whether is quota turned on on given device for given type */
int kern_quota_on(const char *dev, int type, int fmt);
+/* Flags for init_mounts_scan() */
+#define MS_NO_MNTPOINT 0x01 /* Specified directory needn't be mountpoint */
/* Initialize mountpoints scan */
-int init_mounts_scan(int dcnt, char **dirs);
+int init_mounts_scan(int dcnt, char **dirs, int flags);
-/* Flags for get_next_mount() */
-#define MS_NO_MNTPOINT 0x01 /* Specified directory needn't be mountpoint */
/* Return next mountpoint for scan */
-struct mntent *get_next_mount(int flags);
+struct mntent *get_next_mount(void);
/* Free all structures associated with mountpoints scan */
void end_mounts_scan(void);