From be4d08b261f8c8d08d5b28271e2f8234dc7de763 Mon Sep 17 00:00:00 2001 From: Wladimir J. van der Laan Date: Tue, 17 Jan 2012 09:27:03 +0100 Subject: [PATCH] fix the build (port IP validation in options to network refactoring) --- src/qt/optionsmodel.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp index 3237845..241db34 100644 --- a/src/qt/optionsmodel.cpp +++ b/src/qt/optionsmodel.cpp @@ -87,7 +87,7 @@ bool OptionsModel::setData(const QModelIndex & index, const QVariant & value, in case ProxyIP: { // Use CAddress to parse and check IP - CAddress addr(value.toString().toStdString() + ":1"); + CNetAddr addr(value.toString().toStdString()); if (addr.IsValid()) { addrProxy.SetIP(addr); -- 1.7.1