diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-04-04 14:25:07 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-04-04 14:25:07 +0000 |
commit | ce2c4d02c824552076bff61daee7824c46edc46d (patch) | |
tree | ef3a304109e7f660048ab716121c6023fe69d793 /src | |
parent | d31359dcdc37be9797e50cdf1a6850c1f5ef0119 (diff) |
BUILD : 1.7.8 (656) BUGS : 331 NOTES : (1) Updated de.l (2) mydbgen will now be installed correctly (3) added support for cmodes +SN to solidircd
git-svn-id: svn://svn.anope.org/anope/trunk@656 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@504 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 1 | ||||
-rw-r--r-- | src/servers.c | 2 | ||||
-rw-r--r-- | src/solidircd.c | 4 |
3 files changed, 5 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index edcc0fcdc..f80b157ac 100644 --- a/src/Makefile +++ b/src/Makefile @@ -98,6 +98,7 @@ install: services test -d ${BINDEST} || mkdir ${BINDEST} $(INSTALL) services $(BINDEST)/services $(INSTALL) bin/anoperc $(BINDEST)/anoperc + $(INSTALL) bin/mydbgen $(BINDEST)/mydbgen rm -f $(BINDEST)/listnicks $(BINDEST)/listchans ln $(BINDEST)/services $(BINDEST)/listnicks ln $(BINDEST)/services $(BINDEST)/listchans diff --git a/src/servers.c b/src/servers.c index 9fb63c734..872e1d5a0 100644 --- a/src/servers.c +++ b/src/servers.c @@ -570,7 +570,7 @@ void finish_sync(Server * serv, int sync_links) do { if (!is_sync(s)) { if (debug) - alog("Finishing sync for server %s", s->name); + alog("debug: Finishing sync for server %s", s->name); s->sync = SSYNC_DONE; } diff --git a/src/solidircd.c b/src/solidircd.c index 063b1d9c4..1e13f388b 100644 --- a/src/solidircd.c +++ b/src/solidircd.c @@ -370,7 +370,7 @@ CBMode cbmodes[128] = { {0}, /* K */ {0}, /* L */ {CMODE_M, 0, NULL, NULL}, /* M */ - {0}, /* N */ + {CMODE_N, 0, NULL, NULL}, /* N */ {CMODE_O, CBM_NO_USER_MLOCK, NULL, NULL}, {0}, /* P */ {0}, /* Q */ @@ -428,6 +428,8 @@ CBModeInfo cbmodeinfos[] = { {'M', CMODE_M, 0, NULL, NULL}, {'O', CMODE_O, 0, NULL, NULL}, {'R', CMODE_R, 0, NULL, NULL}, + {'N', CMODE_N, 0, NULL, NULL}, + {'S', CMODE_S, 0, NULL, NULL}, {0} }; |