1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-10 01:43:12 +02:00

Fixed a V:line bug

This commit is contained in:
codemastr
2000-07-22 16:14:32 +00:00
parent 110e114d90
commit 07353dcf4b
2 changed files with 4 additions and 3 deletions
+1
View File
@@ -464,3 +464,4 @@
- Fixed a +L bug
- Fixed a typo in Config
- SJ3 fixes. Let's hope this works (f*cken hell..)
- Fixed a V:line bug
+3 -3
View File
@@ -944,7 +944,7 @@ static int completed_connection(cptr)
aClient *cptr;
{
aConfItem *aconf;
extern char serveropts[];
SetHandshake(cptr);
aconf = find_conf(cptr->confs, cptr->name, CONF_CONNECT_SERVER);
@@ -963,8 +963,8 @@ static int completed_connection(cptr)
return -1;
}
sendto_one(cptr, "PROTOCTL %s", PROTOCTL_SERVER);
sendto_one(cptr, "SERVER %s 1 :%s",
my_name_for_link(me.name, aconf), me.info);
sendto_one(cptr, "SERVER %s 1 :U%d-%s %s",
my_name_for_link(me.name, aconf), UnrealProtocol, serveropts,me.info);
if (!IsDead(cptr))
start_auth(cptr);