From bdf05e9aab39b73813558020321c595b55d107f7 Mon Sep 17 00:00:00 2001 From: "psyc://loupsycedyglgamf.onion/~lynX" Date: Wed, 4 Apr 1984 00:44:10 +0000 Subject: [PATCH] -stop shadowing other people's tmp vars --- CHANGESTODO | 5 +++++ world/net/spyc/circuit.c | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGESTODO b/CHANGESTODO index 1cada40..f28e5bb 100644 --- a/CHANGESTODO +++ b/CHANGESTODO @@ -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 diff --git a/world/net/spyc/circuit.c b/world/net/spyc/circuit.c index 518adb4..d9877c1 100644 --- a/world/net/spyc/circuit.c +++ b/world/net/spyc/circuit.c @@ -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 = ({ }); }