Commit 4c99e3e9 authored by Monty's avatar Monty

Fixed bug in detection of getgrouplist parameters.

On my system, OpenSuse, I got a compilation error that some arguments
to getgrouplist() where not initialized
parent 14798d3c
...@@ -14,8 +14,8 @@ CHECK_C_SOURCE_COMPILES( ...@@ -14,8 +14,8 @@ CHECK_C_SOURCE_COMPILES(
#include <grp.h> #include <grp.h>
#include <unistd.h> #include <unistd.h>
int main() { int main() {
char *arg_1; char *arg_1= 0;
gid_t arg_2, arg_3; gid_t arg_2=0, arg_3;
int arg_4; 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; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment