On 02/19/2013 12:10 PM, Joachim Schmitz wrote:
You seem to have missed one change, unless I'm missing something? This is your patch:diff --git a/src/chroot.c b/src/chroot.c index 1c1a976..bb45825 100644 --- a/src/chroot.c +++ b/src/chroot.c @@ -57,7 +57,7 @@ static struct option const long_opts[] = always-successful replacement to avoid checking for setgroups availability everywhere, just to support broken platforms. */ static int -setgroups (size_t size ATTRIBUTE_UNUSED, gid_t const *list ATTRIBUTE_UNUSED) +setgroups (size_t size _GL_UNUSED, gid_t const *list ATTRIBUTE_UNUSED)
Good catch! My sed was missing a /g and that function was excluded from my compile. thanks! Pádraig.
