1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-08 17:13:12 +02:00

+- Minor SJOIN fix ..

This commit is contained in:
stskeeps
2001-07-10 11:14:12 +00:00
parent c6e8b4b28b
commit dc1a1f4be0
2 changed files with 6 additions and 4 deletions
+1
View File
@@ -674,3 +674,4 @@ seen. gmtime warning still there
codemastr
- Some configure.in fixes to pthread stuff
- Added possiblity to add parameters to configure in Config
- Minor SJOIN fix ..
+5 -4
View File
@@ -735,10 +735,11 @@ void sendto_serv_butone_token_opt(aClient *one, int opt, char *prefix, char *com
if (strchr(prefix, '.'))
{
acptr = (aClient *) find_server_quick(prefix);
if (acptr->serv->numeric)
{
strcpy(pref, base64enc(acptr->serv->numeric));
}
if (acptr && acptr->serv)
if (acptr->serv->numeric)
{
strcpy(pref, base64enc(acptr->serv->numeric));
}
}
strcpy(tcmd, token);