reorganizing

This commit is contained in:
joonicks
2018-04-04 06:04:58 +02:00
parent a5187a7a8f
commit c5b03f35e1
66 changed files with 1670 additions and 2742 deletions

View File

@@ -353,7 +353,7 @@ void to_user_q(const char *target, const char *format, ...)
vsprintf(message,format,args);
va_end(args);
Strcat(message,"\n");
stringcat(message,"\n");
fmt = "NOTICE %s :%s";
if (CurrentChan)
@@ -434,12 +434,12 @@ void to_user(const char *target, const char *format, ...)
#endif /* DEBUG */
return;
}
s = Strcpy(message,"NOTICE ");
s = stringcpy(message,"NOTICE ");
if (ischannel(target))
Strcat(message,target);
stringcat(message,target);
else
nickcpy(s,target);
s = Strcat(message," :");
s = stringcat(message," :");
}
va_start(args,format);
@@ -457,7 +457,7 @@ void to_user(const char *target, const char *format, ...)
/*
* tag on a newline for DCC or server
*/
s = Strcat(message,"\n");
s = stringcat(message,"\n");
#ifdef DEBUG
*s = 0;