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

- Fixed the double +cF notice on local connections exiting, ugly hack

- Removed the last traces of unix sockets, flag 0x10 free now
This commit is contained in:
stskeeps
2000-06-06 20:01:17 +00:00
parent a75432c9ca
commit 12d99c8026
7 changed files with 42 additions and 65 deletions
+3 -2
View File
@@ -104,6 +104,7 @@ char REPORT_DO_SOCKS[128], REPORT_NO_SOCKS[128], REPORT_GOOD_SOCKS[128];
#endif
#endif
aClient me; /* That's me */
char *me_hash;
aClient *client = &me; /* Pointer to beginning of Client list */
extern char backupbuf[8192];
@@ -1073,8 +1074,8 @@ int InitwIRCD(argc, argv)
#endif
SetMe(&me);
make_server(&me);
(void)find_or_add(me.name);
me.serv->up = find_or_add(me.name);
me_hash = find_or_add(me.name);
me.serv->up = me_hash;
me.lasttime = me.since = me.firsttime = TStime();
(void)add_to_client_hash_table(me.name, &me);