From 8b814c724c6e139eff4c3b1a68b6f598da099c26 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sat, 17 May 2008 19:31:38 +0000 Subject: [PATCH] - Added a little debug for p2b --- src/options_imp.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/options_imp.cpp b/src/options_imp.cpp index cfdedbc8a..85fbe1c32 100644 --- a/src/options_imp.cpp +++ b/src/options_imp.cpp @@ -1262,6 +1262,7 @@ void options_imp::parseP2BFilterFile(QString filePath) { } if(version==1 || version==2) { + qDebug ("p2b version 1 or 2"); unsigned int start, end; string name; @@ -1283,6 +1284,7 @@ void options_imp::parseP2BFilterFile(QString filePath) { } } else if(version==3) { + qDebug ("p2b version 3"); unsigned int namecount; if(!stream.readRawData((char*)&namecount, sizeof(namecount))) { QMessageBox::critical(0, tr("I/O Error", "Input/Output Error"), tr("%1 is not a valid PeerGuardian P2B file.").arg(filePath));