diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2004-04-14 20:25:52 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2004-04-14 20:25:52 +0000 |
commit | 1694273ed08e376fefc974217106f325cfac124f (patch) | |
tree | 440dd3e1d898c7b739c661e21ea7f0c433054fa0 /src | |
parent | 861db357fb1d10962cd49ec47e42599634c5f45f (diff) |
Authentication and netjoin fixes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@590 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/InspIRCd.layout | 12 | ||||
-rw-r--r-- | src/inspircd.cpp | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/InspIRCd.layout b/src/InspIRCd.layout index be51ff58f..6a049eb0c 100644 --- a/src/InspIRCd.layout +++ b/src/InspIRCd.layout @@ -1,5 +1,5 @@ [Editors] -Focused=24 +Focused=1 Order=1,2,4,6,3,7,25,5,24,-1 [Editor_0] @@ -12,10 +12,10 @@ LeftChar=1 [Editor_1] Open=1 -Top=0 +Top=1 CursorCol=1 -CursorRow=6857 -TopLine=6832 +CursorRow=6800 +TopLine=6774 LeftChar=1 [Editor_2] @@ -196,9 +196,9 @@ LeftChar=1 [Editor_24] Open=1 -Top=1 +Top=0 CursorCol=4 -CursorRow=263 +CursorRow=272 TopLine=254 LeftChar=1 [Editor_25] diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 85b9072d0..a6f616357 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -6796,10 +6796,10 @@ void handle_link_packet(char* udp_msg, char* udp_host, serverrec *serv) if (!strcasecmp(servers[j]->name,udp_host)) { strcpy(servers[j]->description,serverdesc); - DoSync(serv,udp_host); - char buffer[MAXBUF]; sprintf(buffer,"X 0"); serv->SendPacket(buffer,udp_host); + DoSync(serv,udp_host); + char buffer[MAXBUF]; return; } } |