diff options
author | Roel Kluin <12o3l@tiscali.nl> | 2008-02-12 20:38:10 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2008-02-12 20:38:10 +0000 |
commit | 6f7e8f376360c789cf84a0321960dcef8bf92aff (patch) | |
tree | d942bc7b2e8bcd8aeaa772757cfaf161b42359d7 /fs | |
parent | 90c81e0b0eda214196cbe4340facbce8cc797ee7 (diff) | |
download | linux-3.10-6f7e8f376360c789cf84a0321960dcef8bf92aff.tar.gz linux-3.10-6f7e8f376360c789cf84a0321960dcef8bf92aff.tar.bz2 linux-3.10-6f7e8f376360c789cf84a0321960dcef8bf92aff.zip |
[CIFS] Fix typo in quota operations
Although these experimental operations are not fully implemented, fix the
typo in the definition of the quotactl operations for cifs.
Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/cifsfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index ff57ad4efe8..29bbf655b99 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -459,7 +459,7 @@ int cifs_xstate_get(struct super_block *sb, struct fs_quota_stat *qstats) static struct quotactl_ops cifs_quotactl_ops = { .set_xquota = cifs_xquota_set, - .get_xquota = cifs_xquota_set, + .get_xquota = cifs_xquota_get, .set_xstate = cifs_xstate_set, .get_xstate = cifs_xstate_get, }; |