summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2017-06-14 10:09:03 +0200
committerlouiz’ <louiz@louiz.org>2017-06-14 10:46:44 +0200
commitdac19da4c791a6c16cde09e61841fd7f6b6268d2 (patch)
tree37011fd3b627bc7be133c5e394551d120451f168 /src
parent922610cdbf0469e01fd99655c46cceff57a825d8 (diff)
downloadbiboumi-dac19da4c791a6c16cde09e61841fd7f6b6268d2.tar.gz
biboumi-dac19da4c791a6c16cde09e61841fd7f6b6268d2.tar.bz2
biboumi-dac19da4c791a6c16cde09e61841fd7f6b6268d2.tar.xz
biboumi-dac19da4c791a6c16cde09e61841fd7f6b6268d2.zip
Fix an inversion of tlsPorts_ and ports_
Diffstat (limited to 'src')
-rw-r--r--src/database/database.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/database/database.hpp b/src/database/database.hpp
index a0611c1..3a99867 100644
--- a/src/database/database.hpp
+++ b/src/database/database.hpp
@@ -48,11 +48,11 @@ class Database
struct Pass: Column<std::string> { static constexpr auto name = "pass_";
static constexpr auto options = ""; };
- struct Ports: Column<std::string> { static constexpr auto name = "tlsPorts_";
+ struct Ports: Column<std::string> { static constexpr auto name = "ports_";
static constexpr auto options = "";
- Ports(): Column<std::string>("6667") {}};
+ Ports(): Column<std::string>("6667") {} };
- struct TlsPorts: Column<std::string> { static constexpr auto name = "ports_";
+ struct TlsPorts: Column<std::string> { static constexpr auto name = "tlsPorts_";
static constexpr auto options = "";
TlsPorts(): Column<std::string>("6697;6670") {} };