* src/grpck.c: Added comments.

* src/grpck.c: Avoid implicit conversion of pointer to boolean.
	* src/grpck.c: Remove dead code. argc cannot be lower than optind.
	Avoid checking twice in a row for NULL != list[i].
This commit is contained in:
nekral-guest 2011-07-22 22:07:23 +00:00
parent 275ffe2e01
commit e8373305b4
2 changed files with 15 additions and 8 deletions

View File

@ -1,3 +1,10 @@
2011-07-23 Nicolas François <nicolas.francois@centraliens.net>
* src/grpck.c: Added comments.
* src/grpck.c: Avoid implicit conversion of pointer to boolean.
* src/grpck.c: Remove dead code. argc cannot be lower than optind.
Avoid checking twice in a row for NULL != list[i].
2011-07-22 Nicolas François <nicolas.francois@centraliens.net> 2011-07-22 Nicolas François <nicolas.francois@centraliens.net>
* libmisc/find_new_gid.c, libmisc/find_new_uid.c: Fail in case of * libmisc/find_new_gid.c, libmisc/find_new_uid.c: Fail in case of

View File

@ -3,7 +3,7 @@
* Copyright (c) 1996 - 2000, Marek Michałkiewicz * Copyright (c) 1996 - 2000, Marek Michałkiewicz
* Copyright (c) 2001 , Michał Moskal * Copyright (c) 2001 , Michał Moskal
* Copyright (c) 2001 - 2006, Tomasz Kłoczko * Copyright (c) 2001 - 2006, Tomasz Kłoczko
* Copyright (c) 2007 - 2009, Nicolas François * Copyright (c) 2007 - 2011, 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
@ -148,21 +148,21 @@ static void usage (void)
* delete_member - delete an entry in a list of members * delete_member - delete an entry in a list of members
* *
* It only deletes the first entry with the given name. * It only deletes the first entry with the given name.
* The member is defined by its address, no string comparison are
* performed.
*/ */
static void delete_member (char **list, const char *member) static void delete_member (char **list, const char *member)
{ {
int i; int i;
for (i = 0; list[i]; i++) { for (i = 0; NULL != list[i]; i++) {
if (list[i] == member) { if (list[i] == member) {
break; break;
} }
} }
if (list[i]) { for (; NULL != list[i]; i++) {
for (; list[i]; i++) { list[i] = list[i + 1];
list[i] = list[i + 1];
}
} }
} }
@ -203,9 +203,9 @@ static void process_flags (int argc, char **argv)
* Make certain we have the right number of arguments * Make certain we have the right number of arguments
*/ */
#ifdef SHADOWGRP #ifdef SHADOWGRP
if ((argc < optind) || (argc > (optind + 2))) if (argc > (optind + 2))
#else #else
if ((argc < optind) || (argc > (optind + 1))) if (argc > (optind + 1))
#endif #endif
{ {
usage (); usage ();