-stop shadowing other people's tmp vars

This commit is contained in:
psyc://loupsycedyglgamf.onion/~lynX 1984-04-04 00:44:10 +00:00
parent 7246640faf
commit bdf05e9aab
2 changed files with 8 additions and 3 deletions

View File

@ -30,6 +30,11 @@ ________________________________________________________________________
+ clean-up and release the historic webchat code
(in case you wondered what browsercap is.. it's there)
+ IRC-UX: catch when folks use #notation with native commands
like +sub
+ IRC-UX: give users an informational NOTICE when redirecting
== XMPP MUC MOSTLY BROKEN ==============================================
* XMTUX sagt: and these scratchboard-messages and the "going down" messages are sent by this "special user", too

View File

@ -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 = ({ });
}