# HG changeset patch # User Vlad Glagolev # Date 1208684732 -14400 # Node ID ed800eab1c3805755335fbb8f65ba3a6c3552884 # Parent 8d54d9fdeca32d2f2d4fbff893164a06c56ef429 fixed the brackets :^) diff -r 8d54d9fdeca3 -r ed800eab1c38 sources/headers/connection.hpp --- a/sources/headers/connection.hpp Sun Feb 03 21:29:41 2008 +0300 +++ b/sources/headers/connection.hpp Sun Apr 20 13:45:32 2008 +0400 @@ -52,15 +52,13 @@ port(p), password(pw), next(this) - { - }; + {}; host_type(pchar h, int p, pchar pw, host_type *t): host(h), port(p), password(pw), next(t) - { - }; + {}; } *hosts, *current; host_type *addHost(host_type *, pchar, int, pchar);