* libmisc/find_new_gid.c, libmisc/find_new_uid.c,

libmisc/isexpired.c, src/groupadd.c, lib/pwauth.h, lib/groupmem.c,
	lib/shadowmem.c, lib/pwmem.c, lib/prototypes.h: Added splint
	annotations.
This commit is contained in:
nekral-guest
2009-04-23 17:43:27 +00:00
parent 956d68c870
commit 7f165aab7f
10 changed files with 45 additions and 25 deletions

View File

@@ -72,10 +72,10 @@
*/
char *Prog;
static char *group_name;
static /*@null@*/char *group_name;
static gid_t group_id;
static char *group_passwd;
static char *empty_list = NULL;
static /*@null@*/char *group_passwd;
static /*@null@*/char *empty_list = NULL;
static bool oflg = false; /* permit non-unique group ID to be specified with -g */
static bool gflg = false; /* ID value for the new group */
@@ -605,6 +605,6 @@ int main (int argc, char **argv)
nscd_flush_cache ("group");
exit (E_SUCCESS);
/* NOT REACHED */
/*@notreached@*/
}