diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/InspIRCd.layout | 14 | ||||
-rw-r--r-- | src/connection.cpp | 2 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/InspIRCd.layout b/src/InspIRCd.layout index ff0f11a2a..19472df8c 100644 --- a/src/InspIRCd.layout +++ b/src/InspIRCd.layout @@ -13,9 +13,9 @@ LeftChar=1 [Editor_1] Open=1 Top=0 -CursorCol=14 -CursorRow=300 -TopLine=265 +CursorCol=31 +CursorRow=6996 +TopLine=6969 LeftChar=1 [Editor_2] @@ -197,10 +197,10 @@ LeftChar=1 [Editor_24] Open=1 Top=1 -CursorCol=86 -CursorRow=368 -TopLine=323 -LeftChar=1 +CursorCol=94 +CursorRow=175 +TopLine=161 +LeftChar=18 [Editor_25] Open=1 Top=0 diff --git a/src/connection.cpp b/src/connection.cpp index bd9595004..ad9133031 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -172,7 +172,7 @@ bool connection::BeginLink(char* targethost, int port, char* password, char* ser // targethost has been turned into an ip... // we dont want this as the server name. connector.SetServerName(servername); - sprintf(connect,"S %s %s %d :%s",getservername().c_str(),password,myport,getserverdesc().c_str()); + sprintf(connect,"S %s %s %d %d :%s",getservername().c_str(),password,myport,GetRevision(),getserverdesc().c_str()); connector.SetState(STATE_NOAUTH_OUTBOUND); connector.SetHostAndPort(targethost, port); this->connectors.push_back(connector); |