[Pkg-shadow-commits] r3432 - in upstream/trunk: . src
Nicolas FRANÇOIS
nekral-guest at alioth.debian.org
Fri Jul 22 22:07:23 UTC 2011
Author: nekral-guest
Date: 2011-07-22 22:07:23 +0000 (Fri, 22 Jul 2011)
New Revision: 3432
Modified:
upstream/trunk/ChangeLog
upstream/trunk/src/grpck.c
Log:
* 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].
Modified: upstream/trunk/ChangeLog
===================================================================
--- upstream/trunk/ChangeLog 2011-07-22 21:53:01 UTC (rev 3431)
+++ upstream/trunk/ChangeLog 2011-07-22 22:07:23 UTC (rev 3432)
@@ -1,3 +1,10 @@
+2011-07-23 Nicolas François <nicolas.francois at 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 at centraliens.net>
* libmisc/find_new_gid.c, libmisc/find_new_uid.c: Fail in case of
Modified: upstream/trunk/src/grpck.c
===================================================================
--- upstream/trunk/src/grpck.c 2011-07-22 21:53:01 UTC (rev 3431)
+++ upstream/trunk/src/grpck.c 2011-07-22 22:07:23 UTC (rev 3432)
@@ -3,7 +3,7 @@
* Copyright (c) 1996 - 2000, Marek Michałkiewicz
* Copyright (c) 2001 , Michał Moskal
* Copyright (c) 2001 - 2006, Tomasz Kłoczko
- * Copyright (c) 2007 - 2009, Nicolas François
+ * Copyright (c) 2007 - 2011, Nicolas François
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -148,21 +148,21 @@
* delete_member - delete an entry in a list of members
*
* 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)
{
int i;
- for (i = 0; list[i]; i++) {
+ for (i = 0; NULL != list[i]; i++) {
if (list[i] == member) {
break;
}
}
- if (list[i]) {
- for (; list[i]; i++) {
- list[i] = list[i + 1];
- }
+ for (; NULL != list[i]; i++) {
+ list[i] = list[i + 1];
}
}
@@ -203,9 +203,9 @@
* Make certain we have the right number of arguments
*/
#ifdef SHADOWGRP
- if ((argc < optind) || (argc > (optind + 2)))
+ if (argc > (optind + 2))
#else
- if ((argc < optind) || (argc > (optind + 1)))
+ if (argc > (optind + 1))
#endif
{
usage ();
More information about the Pkg-shadow-commits
mailing list