diff options
author | Bjoern Jacke <bj@sernet.de> | 2019-01-30 18:35:55 -0600 |
---|---|---|
committer | Bjoern Jacke <bjacke@samba.org> | 2019-02-17 13:33:13 +0100 |
commit | 0c9c51fa7a69e1807c773a04247828046e98c7fc (patch) | |
tree | 03df58a9952bbb4d8e78db0d970d518e485bf151 /tests | |
parent | 204a03e0bba636d22b352d159815d2ed0be07354 (diff) | |
download | samba-0c9c51fa7a69e1807c773a04247828046e98c7fc.tar.gz |
tests/sysquotas.c: include jfs/quota.h for 4B test on AIX
Signed-off-by: Bjoern Jacke <bjacke@samba.org>
Reviewed-by: Uri Simchoni <uri@samba.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/sysquotas.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/sysquotas.c b/tests/sysquotas.c index a9004998829..973b9f4f76a 100644 --- a/tests/sysquotas.c +++ b/tests/sysquotas.c @@ -61,6 +61,10 @@ extern int quotactl(int cmd, const char *special, uid_t uid, void *addr); #include <ufs/ufs/quota.h> #endif +#if defined(HAVE_JFS_QUOTA_H) +#include <jfs/quota.h> +#endif + int autoconf_quota(void) { int ret = -1; |