From 1595f7e44815abed44629ff900a25b250979dddb Mon Sep 17 00:00:00 2001 From: HanzZ Date: Fri, 11 Jan 2013 23:32:11 +0100 Subject: [PATCH] Fixed typo --- src/pqxxbackend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pqxxbackend.cpp b/src/pqxxbackend.cpp index d3a9b63a..f9b399d3 100644 --- a/src/pqxxbackend.cpp +++ b/src/pqxxbackend.cpp @@ -67,7 +67,7 @@ bool PQXXBackend::connect() { connection_str += " password=" + CONFIG_STRING(m_config, "database.password"); } if (CONFIG_INT(m_config, "database.port") != 0) { - connection_str += " port=" + boost:lexical_cast(CONFIG_INT(m_config, "database.port")); + connection_str += " port=" + boost::lexical_cast(CONFIG_INT(m_config, "database.port")); } } else {