~singpolyma/biboumi

dac19da4c791a6c16cde09e61841fd7f6b6268d2 — louiz’ 6 years ago 922610c
Fix an inversion of tlsPorts_ and ports_
1 files changed, 3 insertions(+), 3 deletions(-)

M src/database/database.hpp
M src/database/database.hpp => src/database/database.hpp +3 -3
@@ 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") {} };