From dac19da4c791a6c16cde09e61841fd7f6b6268d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Wed, 14 Jun 2017 10:09:03 +0200 Subject: Fix an inversion of tlsPorts_ and ports_ --- src/database/database.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') 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 { static constexpr auto name = "pass_"; static constexpr auto options = ""; }; - struct Ports: Column { static constexpr auto name = "tlsPorts_"; + struct Ports: Column { static constexpr auto name = "ports_"; static constexpr auto options = ""; - Ports(): Column("6667") {}}; + Ports(): Column("6667") {} }; - struct TlsPorts: Column { static constexpr auto name = "ports_"; + struct TlsPorts: Column { static constexpr auto name = "tlsPorts_"; static constexpr auto options = ""; TlsPorts(): Column("6697;6670") {} }; -- cgit v1.2.3