1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 16:46:38 +02:00

BUILD : 1.7.4 (311) BUGS : none NOTES : Running am script with new am script.

git-svn-id: svn://svn.anope.org/anope/trunk@311 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@190 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-08-04 18:38:37 +00:00
parent 02c5ac9c67
commit 05ca5e301e
7 changed files with 13 additions and 7 deletions
+1 -1
View File
@@ -191,7 +191,7 @@ void botchanmsgs(User * u, ChannelInfo * ci, char *buff)
int16 cstatus = 0;
char *cmd, *buf;
UserData *ud;
buf = sstrdup(buff);
if (!u) {
+3 -1
View File
@@ -1839,7 +1839,9 @@ char *moduleGetData(ModuleData * md[], char *key)
ModuleData *lastHash = NULL;
ModuleDataItem *itemCurrent = NULL;
index = CMD_HASH(mod_name);
if(!md) { return NULL; }
if (!md) {
return NULL;
}
for (current = md[index]; current; current = current->next) {
if (stricmp(current->moduleName, mod_name) == 0)
lastHash = current;
+1 -1
View File
@@ -1518,7 +1518,7 @@ static int delcore(NickCore * nc)
free(nc->greet);
if (nc->url)
free(nc->url);
if (nc->access) {
for (i = 0; i < nc->accesscount; i++) {
if (nc->access[i])
+1 -1
View File
@@ -4416,7 +4416,7 @@ static int do_noop(User * u)
for (u2 = firstuser(); u2; u2 = u3) {
u3 = nextuser();
if ((u2) && is_oper(u2) && (u2->server->name)
&& match_wild(server,u2->server->name)) {
&& match_wild(server, u2->server->name)) {
kill_user(s_OperServ, u2->nick, reason);
}
}
+1 -1
View File
@@ -18,7 +18,7 @@
#ifndef INADDR_NONE
#define INADDR_NONE 0xFFFFFFFF
#endif
#endif
/* Hashed list of HostCache; threads must not use it! */
HostCache *hcache[1024];
+1 -1
View File
@@ -98,7 +98,7 @@ static User *new_user(const char *nick)
alog("user: New maximum user count: %d", maxusercnt);
}
user->isSuperAdmin = 0; /* always set SuperAdmin to 0 for new users */
user->nickTrack = NULL; /* ensure no default tracking nick */
user->nickTrack = NULL; /* ensure no default tracking nick */
return user;
}
+5 -1
View File
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="4"
VERSION_BUILD="310"
VERSION_BUILD="311"
# $Log$
#
# BUILD : 1.7.4 (311)
# BUGS : none
# NOTES : Running am script with new am script.
#
# BUILD : 1.7.4 (310)
# BUGS : none
# NOTES : Fixed am script to run indent on src dir if it exists.