Home | History | Annotate | Download | only in libmenu

Lines Matching refs:username

26 char authenticate_user(const char *username, const char *pwd)
34 if (strcmp(username, userdb[i]->username) == 0) {
44 // Does user USERNAME have permission PERM
45 char isallowed(const char *username, const char *perm)
54 if (strcmp(username, GUEST_USER) == 0)
63 if (strcmp(userdb[i]->username, username) == 0) // Found the user
115 user = p; // This is where username starts
134 strcpy(userdb[numusers]->username, user);