This patch adds comments on some variables which were causing compiler warnings as they were not being used. Also there was a risk of ret being used uninitialized.
Signed-off-by: Sudhir Kumar <[email protected]> --- tests/setuid.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Index: trunk/tests/setuid.c =================================================================== --- trunk.orig/tests/setuid.c +++ trunk/tests/setuid.c @@ -35,13 +35,13 @@ int main(int argc, char *argv[]) uid_t uid; /* Group data */ - struct group *grp; +/* struct group *grp; */ /* GID of group */ - gid_t gid; +/* gid_t gid; */ /* Return codes */ - int ret; + int ret = -1; if (argc < 2) { printf("Usage: %s <uid_value> \n", argv[0]); ------------------------------------------------------------------------------ Check out the new SourceForge.net Marketplace. It is the best place to buy or sell services for just about anything Open Source. http://p.sf.net/sfu/Xq1LFB _______________________________________________ Libcg-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/libcg-devel
