* libmisc/addgrps.c: Fix warnings.

This commit is contained in:
nekral-guest 2009-03-14 13:13:47 +00:00
parent 29381bf9d6
commit 295106b6a8
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2009-03-14 Nicolas François <nicolas.francois@centraliens.net>
* libmisc/addgrps.c: Fix warnings.
2009-03-14 Nicolas François <nicolas.francois@centraliens.net> 2009-03-14 Nicolas François <nicolas.francois@centraliens.net>
* man/po/fr.po: Added missing space. * man/po/fr.po: Added missing space.

View File

@ -2,7 +2,7 @@
* Copyright (c) 1989 - 1994, Julianne Frances Haugh * Copyright (c) 1989 - 1994, Julianne Frances Haugh
* Copyright (c) 1996 - 1998, Marek Michałkiewicz * Copyright (c) 1996 - 1998, Marek Michałkiewicz
* Copyright (c) 2001 - 2006, Tomasz Kłoczko * Copyright (c) 2001 - 2006, Tomasz Kłoczko
* Copyright (c) 2007 - 2008, Nicolas François * Copyright (c) 2007 - 2009, Nicolas François
* All rights reserved. * All rights reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@ -52,7 +52,8 @@
int add_groups (const char *list) int add_groups (const char *list)
{ {
GETGROUPS_T *grouplist, *tmp; GETGROUPS_T *grouplist, *tmp;
int i, ngroups; unsigned int i;
int ngroups;
bool added; bool added;
char *token; char *token;
char buf[1024]; char buf[1024];
@ -114,7 +115,7 @@ int add_groups (const char *list)
} }
if (added) { if (added) {
return setgroups (ngroups, grouplist); return setgroups ((size_t)ngroups, grouplist);
} }
return 0; return 0;