Lines Matching refs:non_cvsuser_portion
6742 char *non_cvsuser_portion; in check_repository_password() local
6765 non_cvsuser_portion = linebuf + namelen; in check_repository_password()
6766 strtok (non_cvsuser_portion, "\n"); in check_repository_password()
6769 if (strchr (non_cvsuser_portion, ':') == non_cvsuser_portion) in check_repository_password()
6770 non_cvsuser_portion++; in check_repository_password()
6775 if ((non_cvsuser_portion == NULL) in check_repository_password()
6776 || (strlen (non_cvsuser_portion) == 0) in check_repository_password()
6777 || ((strspn (non_cvsuser_portion, " \t")) in check_repository_password()
6778 == strlen (non_cvsuser_portion))) in check_repository_password()
6783 else if (strncmp (non_cvsuser_portion, ":", 1) == 0) in check_repository_password()
6786 host_user_tmp = non_cvsuser_portion + 1; in check_repository_password()
6792 found_password = strtok (non_cvsuser_portion, ":"); in check_repository_password()