mirror of
https://github.com/3proxy/3proxy.git
synced 2025-02-23 02:25:40 +08:00
Compile error in last commit corrected
This commit is contained in:
parent
c532958b9f
commit
19eef46d7e
@ -804,7 +804,7 @@ int doauth(struct clientparam * param){
|
||||
ac->sa = param->sincr;
|
||||
if(conf.authcachetype&32) {
|
||||
ac->sinsl = param-> sinsl;
|
||||
SAPORT(ac->sinsl) = 0;
|
||||
*SAPORT(&ac->sinsl) = 0;
|
||||
}
|
||||
|
||||
break;
|
||||
@ -820,7 +820,7 @@ int doauth(struct clientparam * param){
|
||||
if((conf.authcachetype&4) && param->password) ac->password = mystrdup((char *)param->password);
|
||||
if(conf.authcachetype&32) {
|
||||
ac->sinsl = param->sinsl;
|
||||
SAPORT(ac->sinsl) = 0;
|
||||
*SAPORT(&ac->sinsl) = 0;
|
||||
}
|
||||
}
|
||||
ac->next = authc;
|
||||
|
Loading…
Reference in New Issue
Block a user