From: Todd C. Miller Date: Mon, 11 Oct 2010 13:10:10 +0000 (-0400) Subject: Make this compile correctly when no dlopen is available. X-Git-Tag: SUDO_1_8_0~213 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=751f597b2b9cf37106a5d83b0d83059a8acab72f;p=sudo Make this compile correctly when no dlopen is available. --- diff --git a/plugins/sudoers/group_plugin.c b/plugins/sudoers/group_plugin.c index f00e22174..f8f085040 100644 --- a/plugins/sudoers/group_plugin.c +++ b/plugins/sudoers/group_plugin.c @@ -178,6 +178,12 @@ group_plugin_query(const char *user, const char *group, * No loadable shared object support. */ +#ifndef FALSE +#define FALSE 0 +#endif + +struct passwd; + int group_plugin_load(char *plugin_info) {