changeset 19788:7015b5bd58bf

quots-fs: Fixed compiling with HP/UX and Solaris
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Sun, 21 Feb 2016 17:44:38 +0200
parents 984353e3b41b
children 39b6a7059871
files src/plugins/quota/quota-fs.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/plugins/quota/quota-fs.c	Sun Feb 21 17:44:07 2016 +0200
+++ b/src/plugins/quota/quota-fs.c	Sun Feb 21 17:44:38 2016 +0200
@@ -812,9 +812,9 @@
 		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
 }