From 0610e83468b3455338f8fc02e00f38c23a984d86 Mon Sep 17 00:00:00 2001 From: theli Date: Fri, 5 Aug 2005 21:37:59 +0000 Subject: [PATCH] *) Bugfix. recipient peer was accidentally displayed as source peer of a url transmission. git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@495 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/yacy/transferURL.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htroot/yacy/transferURL.java b/htroot/yacy/transferURL.java index 2f90c0e9d..3a218164e 100644 --- a/htroot/yacy/transferURL.java +++ b/htroot/yacy/transferURL.java @@ -84,18 +84,18 @@ public class transferURL { for (int i = 0; i < urlc; i++) { urls = (String) post.get("url" + i); if (urls == null) { - yacyCore.log.logDebug("transferURL: got null URL-string from peer " + youare); + yacyCore.log.logDebug("transferURL: got null URL-string from peer " + iam); } else { lEntry = switchboard.urlPool.loadedURL.newEntry(urls, true); if ((lEntry != null) && (blockBlacklist)) { if (switchboard.urlBlacklist.isListed(lEntry.url().getHost().toLowerCase(), lEntry.url().getPath())) { - yacyCore.log.logDebug("transferURL: blocked blacklisted URL '" + lEntry.url() + "' from peer " + youare); + yacyCore.log.logDebug("transferURL: blocked blacklisted URL '" + lEntry.url() + "' from peer " + iam); lEntry = null; } } if (lEntry != null) { switchboard.urlPool.loadedURL.addEntry(lEntry, iam, iam, 3); - yacyCore.log.logDebug("transferURL: received URL '" + lEntry.url() + "' from peer " + youare); + yacyCore.log.logDebug("transferURL: received URL '" + lEntry.url() + "' from peer " + iam); received++; } }