From: Timo Sirainen Date: Sun, 21 Feb 2016 15:44:38 +0000 (+0200) Subject: quots-fs: Fixed compiling with HP/UX and Solaris X-Git-Tag: 2.2.22.rc1~132 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=11c685e34a13bf4ee843d5740ecac23f45e7bd44;p=thirdparty%2Fdovecot%2Fcore.git quots-fs: Fixed compiling with HP/UX and Solaris --- diff --git a/src/plugins/quota/quota-fs.c b/src/plugins/quota/quota-fs.c index 24c2d860c3..8d46fdbaa5 100644 --- a/src/plugins/quota/quota-fs.c +++ b/src/plugins/quota/quota-fs.c @@ -812,9 +812,9 @@ fs_quota_get_resources(struct fs_quota_root *root, bool group, return 0; } #ifdef FS_QUOTA_HPUX - return fs_quota_get_hpux(root, bytes, bytes_value_r, bytes_limit_r, count_value_r, count_limit_r); + return fs_quota_get_hpux(root, bytes_value_r, bytes_limit_r, count_value_r, count_limit_r); #else - return fs_quota_get_solaris(root, bytes, bytes_value_r, bytes_limit_r, count_value_r, count_limit_r); + return fs_quota_get_solaris(root, bytes_value_r, bytes_limit_r, count_value_r, count_limit_r); #endif #endif }