mirror of
git://git.psyced.org/git/psyced
synced 2024-08-15 03:25:10 +00:00
-stop shadowing other people's tmp vars
This commit is contained in:
parent
7246640faf
commit
bdf05e9aab
2 changed files with 8 additions and 3 deletions
|
@ -101,7 +101,7 @@ void sender_verification(string sourcehost, mixed targethost)
|
|||
|
||||
// gets called during socket logon
|
||||
int logon(int failure) {
|
||||
mixed t;
|
||||
mixed pappnose;
|
||||
sAuthHosts(([ ])); // reset authhosts
|
||||
legal_senders = ([ ]);
|
||||
instate = ([ "_INTERNAL_origin" : ME ]);
|
||||
|
@ -140,8 +140,8 @@ int logon(int failure) {
|
|||
unless(isServer()) {
|
||||
emit("|\n"); // initial greeting
|
||||
if (sizeof(verify_queue)) {
|
||||
foreach(t : verify_queue) {
|
||||
sender_verification(t[0], t[1]);
|
||||
foreach(pappnose : verify_queue) {
|
||||
sender_verification(pappnose[0], pappnose[1]);
|
||||
}
|
||||
verify_queue = ({ });
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue