diff options
Diffstat (limited to 'src/userprocess.cpp')
-rw-r--r-- | src/userprocess.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/userprocess.cpp b/src/userprocess.cpp index 9c253a074..bf6a457a2 100644 --- a/src/userprocess.cpp +++ b/src/userprocess.cpp @@ -162,7 +162,7 @@ void ProcessUser(userrec* cu) } else { - WriteServ(currfd, "NOTICE %s :Your previous line was too long and was not delivered (Over 512chars) Please shorten it.", current->nick); + current->WriteServ("NOTICE %s :Your previous line was too long and was not delivered (Over 512chars) Please shorten it.", current->nick); current->recvq = ""; } } @@ -366,7 +366,7 @@ void DoBackgroundUserStuff(time_t TIME) curr->nping = TIME+curr->pingmax; continue; } - Write(curr->fd,"PING :%s",Config->ServerName); + curr->Write("PING :%s",Config->ServerName); curr->lastping = 0; curr->nping = TIME+curr->pingmax; } |