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

+- Made badword fix found by eternal/Jsmj

This commit is contained in:
stskeeps
2001-07-08 14:53:51 +00:00
parent 137df47190
commit 3bb6eb48bb
3 changed files with 26 additions and 2 deletions
+1
View File
@@ -669,3 +669,4 @@ seen. gmtime warning still there
- Fixed some rant stuff
- Fixed a documentation bug in unrealircd.conf.txt, made config_error
actually bitch when loop.ircd_booted
- Made badword fix found by eternal/Jsmj
+2 -2
View File
@@ -2260,8 +2260,8 @@ int _conf_badword(ConfigFile *conf, ConfigEntry *ce)
ca = MyMallocEx(sizeof(ConfigItem_badword));
if (!ce->ce_vardata) {
config_error("%s:%i: badword without type",
cep->ce_fileptr->cf_filename,
cep->ce_varlinenum);
ce->ce_fileptr->cf_filename,
ce->ce_varlinenum);
return -1;
}
+23
View File
@@ -432,3 +432,26 @@ time_t atime(char *xtime)
return ((D * 86400) + (H * 3600) + (M * 60) + S);
}
void iCstrip(char *line)
{
char *c;
if ((c = strchr(line, '\n')))
*c = '\0';
if ((c = strchr(line, '\r')))
*c = '\0';
}
char *rfctime(time_t t, char *buf)
{
struct tm *tp;
tp = gmtime(&t);
if (tp == 0) {
return 0;
}
strftime(buf, 31, "%a, %d %b %Y %H:%M:%S GMT", tp);
return buf;
}