summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorDmitry Shulga <dmitry.shulga@mariadb.com>2020-10-23 19:15:22 +0700
committerDmitry Shulga <dmitry.shulga@mariadb.com>2020-10-23 19:15:22 +0700
commit58da04b26122b61c960cbd5130bd638b32e66f01 (patch)
treeaccf512d82b4295f061da670c95457cb927d2fb6 /plugin
parent79f6f0c4fcd5a79fe776a6c089e14c65a04a81bf (diff)
downloadmariadb-git-58da04b26122b61c960cbd5130bd638b32e66f01.tar.gz
MDEV-23926: Follow-up patch
This patch fixes incorrect argument type passed to the last parameter of getgrouplist() in cmake macros CHECK_C_SOURCE_COMPILES()
Diffstat (limited to 'plugin')
-rw-r--r--plugin/auth_pam/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/auth_pam/CMakeLists.txt b/plugin/auth_pam/CMakeLists.txt
index d3b3c256527..e06859ae9b7 100644
--- a/plugin/auth_pam/CMakeLists.txt
+++ b/plugin/auth_pam/CMakeLists.txt
@@ -21,7 +21,7 @@ int main() {
char *arg_1;
gid_t arg_2, arg_3;
int arg_4;
- (void)getgrouplist(arg_1,arg_2,&arg_3,arg_4);
+ (void)getgrouplist(arg_1,arg_2,&arg_3,&arg_4);
return 0;
}
"