From: Maxim Mamontov <faust.madf@gmail.com>
Date: Sat, 10 Aug 2013 07:04:49 +0000 (+0300)
Subject: Renamed a variable.
X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/d3819ef7b806ccd92a767ec4bb43e0388f879216?ds=sidebyside

Renamed a variable.
---

diff --git a/projects/stargazer/plugins/store/postgresql/postgresql_store.cpp b/projects/stargazer/plugins/store/postgresql/postgresql_store.cpp
index aabce23b..5e2d8ae6 100644
--- a/projects/stargazer/plugins/store/postgresql/postgresql_store.cpp
+++ b/projects/stargazer/plugins/store/postgresql/postgresql_store.cpp
@@ -96,15 +96,15 @@ std::vector<PARAM_VALUE>::iterator i;
 for(i = settings.moduleParams.begin(); i != settings.moduleParams.end(); ++i)
     {
     std::string param(ToLower(i->param));
-    if (s == "server")
+    if (param == "server")
         server = *(i->value.begin());
-    else if (s == "database")
+    else if (param == "database")
         database = *(i->value.begin());
-    else if (s == "user")
+    else if (param == "user")
         user = *(i->value.begin());
-    else if (s == "password")
+    else if (param == "password")
         password = *(i->value.begin());
-    else if (s == "retries")
+    else if (param == "retries")
         if (str2x(*(i->value.begin()), retries))
             {
             strError = "Invalid 'retries' value";