On 12/24/2010 12:12 AM, Mi Jinlong wrote: > At nsm_drop_privileges(), for improving readability, unify > the return value. > > --- > support/nsm/file.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/support/nsm/file.c b/support/nsm/file.c > index e21c7d4..98b47bf 100644 > --- a/support/nsm/file.c > +++ b/support/nsm/file.c > @@ -421,7 +421,7 @@ nsm_drop_privileges(const int pidfd) > */ > if (prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0) == -1) { > xlog(L_ERROR, "prctl(PR_SET_KEEPCAPS) failed: %m"); > - return 0; > + return false; > } > > if (setgroups(0, NULL) == -1) { Committed... Thanks! steved -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html