diff options
author | John Terpstra <jht@samba.org> | 2005-09-09 06:40:17 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:03:33 -0500 |
commit | 951a0cec620f03b4ae56bdbfef9940f0ef31b2d6 (patch) | |
tree | 518b82f1b74d628f791daa001c8be388cb10ed90 | |
parent | ab7273c6425fa6869922be4811870aa12b181d20 (diff) | |
download | samba-951a0cec620f03b4ae56bdbfef9940f0ef31b2d6.tar.gz samba-951a0cec620f03b4ae56bdbfef9940f0ef31b2d6.tar.bz2 samba-951a0cec620f03b4ae56bdbfef9940f0ef31b2d6.zip |
r10106: Fix typos. Oops, more fixes.
(This used to be commit 80952a7edab50315c3a17744683a8cb378eec8ae)
-rw-r--r-- | source3/modules/vfs_default_quota.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/modules/vfs_default_quota.c b/source3/modules/vfs_default_quota.c index 923820de9c..9922a30315 100644 --- a/source3/modules/vfs_default_quota.c +++ b/source3/modules/vfs_default_quota.c @@ -34,17 +34,17 @@ * This module takes 2 parametric parameters in smb.conf: * (the default prefix for them is 'default_quota', * it can be overwrittem when you load the module in - * the 'vfs object' parameter like this: - * vfs object = default_quota:myprefix) + * the 'vfs objects' parameter like this: + * vfs objects = default_quota:myprefix) * - * "<prefix>:uid" parameter takes a integer argument, + * "<myprefix>:uid" parameter takes a integer argument, * it specifies the uid of the quota record, that will be taken for * storing the default USER-quotas. * * - default value: '0' (for root user) * - e.g.: default_quota:uid = 65534 * - * "<prefix>:uid nolimit" parameter takes a boolean argument, + * "<myprefix>:uid nolimit" parameter takes a boolean argument, * it specifies if we should report the stored default quota values, * also for the user record, or if you should just report NO_LIMIT * to the windows client for the user specified by the "<prefix>:uid" parameter. @@ -52,14 +52,14 @@ * - default value: yes (that means to report NO_LIMIT) * - e.g.: default_quota:uid nolimit = no * - * "<prefix>:gid" parameter takes a integer argument, + * "<myprefix>:gid" parameter takes a integer argument, * it's just like "<prefix>:uid" but for group quotas. * (NOTE: group quotas are not supported from the windows explorer!) * * - default value: '0' (for root group) * - e.g.: default_quota:gid = 65534 * - * "<prefix>:gid nolimit" parameter takes a boolean argument, + * "<myprefix>:gid nolimit" parameter takes a boolean argument, * it's just like "<prefix>:uid nolimit" but for group quotas. * (NOTE: group quotas are not supported from the windows explorer!) * |