diff options
author | louiz’ <louiz@louiz.org> | 2017-06-14 10:09:03 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2017-06-14 10:46:44 +0200 |
commit | dac19da4c791a6c16cde09e61841fd7f6b6268d2 (patch) | |
tree | 37011fd3b627bc7be133c5e394551d120451f168 | |
parent | 922610cdbf0469e01fd99655c46cceff57a825d8 (diff) | |
download | biboumi-dac19da4c791a6c16cde09e61841fd7f6b6268d2.tar.gz biboumi-dac19da4c791a6c16cde09e61841fd7f6b6268d2.tar.bz2 biboumi-dac19da4c791a6c16cde09e61841fd7f6b6268d2.tar.xz biboumi-dac19da4c791a6c16cde09e61841fd7f6b6268d2.zip |
Fix an inversion of tlsPorts_ and ports_
-rw-r--r-- | src/database/database.hpp | 6 |
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") {} }; |