Lines Matching refs:found
38 unsigned char *found; /* array of booleans of roles found */
39 int extra = 0; /* number of extra roles found */
43 printf("%s not found\n", user_name);
44 CU_FAIL("user not found");
47 found = calloc(num_roles, sizeof(unsigned char));
48 CU_ASSERT_FATAL(found != NULL);
54 found[j] += 1;
60 if (found[j] != 1) {
61 printf("role %s associated with user %s %d times\n", role_names[j], user_name, found[j]);
65 free(found);