From 8bc470e427195f809544da5c5dfa771fa0eec3bd Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Wed, 9 Jul 2008 22:42:04 +0000 Subject: [PATCH] - Spoof latest Azureus version instead of Vuze --- src/bittorrent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bittorrent.cpp b/src/bittorrent.cpp index eb61adb3c..72d2357ab 100644 --- a/src/bittorrent.cpp +++ b/src/bittorrent.cpp @@ -50,7 +50,7 @@ bittorrent::bittorrent() : timerScan(0), DHTEnabled(false), preAllocateAll(false // Check if we should spoof azureus QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent")); if(settings.value(QString::fromUtf8("AzureusSpoof"), false).toBool()) { - s = new session(fingerprint("AZ", 3, 1, 1, 0)); + s = new session(fingerprint("AZ", 3, 0, 5, 2)); } else { s = new session(fingerprint("qB", VERSION_MAJOR, VERSION_MINOR, VERSION_BUGFIX, 0)); }