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

Remove FLAGS_TS8 stuff

This commit is contained in:
codemastr
2004-01-03 01:23:08 +00:00
parent d274d493fd
commit decc5ba107
4 changed files with 2 additions and 10 deletions
+1
View File
@@ -2691,3 +2691,4 @@ seen. gmtime warning still there
- Updated the TRE library source to 0.6.3 (not yet used)
- Updated the win32 TRE lib/dll to 0.6.4
- Updated the TRE library source to 0.6.4 (yup, a release right after I do the last upgrade!)
- Removed all the FLAGS_TS8 stuff (no longer used)
-7
View File
@@ -1292,8 +1292,6 @@ CMD_FUNC(m_mode)
return 0;
}
/* sptr->flags &= ~FLAGS_TS8; */
if (MyConnect(sptr))
clean_channelname(parv[1]);
if (check_channelmask(sptr, cptr, parv[1]))
@@ -3928,8 +3926,6 @@ CMD_FUNC(m_part)
char *commentx = (parc > 2 && parv[2]) ? parv[2] : NULL;
char *comment;
/* sptr->flags &= ~FLAGS_TS8; */
if (parc < 2 || parv[1][0] == '\0')
{
sendto_one(sptr, err_str(ERR_NEEDMOREPARAMS),
@@ -4103,9 +4099,6 @@ CMD_FUNC(m_kick)
char *comment, *name, *p = NULL, *user, *p2 = NULL;
Membership *lp;
/* sptr->flags &= ~FLAGS_TS8; */
if (parc < 3 || *parv[1] == '\0')
{
sendto_one(sptr, err_str(ERR_NEEDMOREPARAMS),
-2
View File
@@ -1028,7 +1028,6 @@ CMD_FUNC(m_server_remote)
add_server_to_table(acptr);
IRCstats.servers++;
(void)find_or_add(acptr->name);
/* acptr->flags |= FLAGS_TS8; */
add_client_to_list(acptr);
(void)add_to_client_hash_table(acptr->name, acptr);
RunHook(HOOKTYPE_SERVER_CONNECT, acptr);
@@ -1145,7 +1144,6 @@ int m_server_synch(aClient *cptr, long numeric, ConfigItem_link *aconf)
#endif
if ((Find_uline(cptr->name)))
cptr->flags |= FLAGS_ULINE;
/* cptr->flags |= FLAGS_TS8; */
nextping = TStime();
(void)find_or_add(cptr->name);
#ifdef USE_SSL
+1 -1
View File
@@ -1060,7 +1060,7 @@ extern int register_user(aClient *cptr, aClient *sptr, char *nick, char *usernam
"USER server wrong direction");
}
else
sptr->flags |= (acptr->flags /* & FLAGS_TS8 */);
sptr->flags |= acptr->flags;
/* *FINALL* this gets in ircd... -- Barubary */
/* We change this a bit .. */
if (IsULine(sptr->srvptr))