|
Majordomo-Users (December 1995) |
>> c: "wrapper.c", line 99: error 1514: Illegal type for string
initializer.
>> 99 char setgroups_used = "setgroups_was_included"; /* give
strings a hint
This one canbe solved by changing this line to:
char *setgroups_used = "setgroups_was_included"; /* give
On my HP-UX 9.01 system, this, and adding the -Aa were the only 2 changes I
needed.
-Mark
|