| 742 | |
| 743 | |
| 744 | int ipauth(struct clientparam * param){ |
| 745 | int res; |
| 746 | unsigned char *username; |
| 747 | username = param->username; |
| 748 | param->username = NULL; |
| 749 | res = checkACL(param); |
| 750 | param->username = username; |
| 751 | return res; |
| 752 | } |
| 753 | |
| 754 | int userauth(struct clientparam * param){ |
| 755 | return (param->username)? 0:4; |
nothing calls this directly
no test coverage detected