...
Code Block | ||
---|---|---|
| ||
int privileges;
if (valid_login())
printf("Login Successful\n"); /* debugging line added here */
if (is_normal()) /* the following if-else clause is always evaluated with the assumption that the user is logged in, even if he is not! */
privileges = NORMAL;
else
privileges = ADMINISTRATOR;
|
...