[IRC-Dev CVS] SF.net SVN: irc-dev:[211] ircd/trunk/ircd
Brought to you by:
zolty
From: <zo...@us...> - 2008-09-12 12:44:50
|
Revision: 211 http://irc-dev.svn.sourceforge.net/irc-dev/?rev=211&view=rev Author: zolty Date: 2008-09-12 12:45:00 +0000 (Fri, 12 Sep 2008) Log Message: ----------- correccion gramatical Modified Paths: -------------- ircd/trunk/ircd/hash.c ircd/trunk/ircd/ircd_features.c ircd/trunk/ircd/s_conf.c Modified: ircd/trunk/ircd/hash.c =================================================================== --- ircd/trunk/ircd/hash.c 2008-09-12 00:11:06 UTC (rev 210) +++ ircd/trunk/ircd/hash.c 2008-09-12 12:45:00 UTC (rev 211) @@ -498,7 +498,7 @@ #if defined(DDB) for (ddb = ddb_iterator_first(DDB_JUPEDB); ddb; ddb = ddb_iterator_next()) - send_reply(to, SND_EXPLICIT | RPL_STATSJLINE, "J %s :%s (setted by DDB)", + send_reply(to, SND_EXPLICIT | RPL_STATSJLINE, "J %s :%s (set by DDB)", ddb_key(ddb), ddb_content(ddb)); #endif } Modified: ircd/trunk/ircd/ircd_features.c =================================================================== --- ircd/trunk/ircd/ircd_features.c 2008-09-12 00:11:06 UTC (rev 210) +++ ircd/trunk/ircd/ircd_features.c 2008-09-12 12:45:00 UTC (rev 211) @@ -640,7 +640,7 @@ } else if (feat->flags & FEAT_DDB) { if (from) { - sendcmdto_one(&me, CMD_NOTICE, from, "%C :The feature has been setted by DDB", from); + sendcmdto_one(&me, CMD_NOTICE, from, "%C :The feature has been set by DDB", from); send_reply(from, ERR_NOFEATURE, fields[0]); } return 0; @@ -804,7 +804,7 @@ #if defined(DDB) if (feat->flags & FEAT_DDB) { if (from) { - sendcmdto_one(&me, CMD_NOTICE, from, "%C :The feature has been setted by DDB", from); + sendcmdto_one(&me, CMD_NOTICE, from, "%C :The feature has been set by DDB", from); send_reply(from, ERR_NOFEATURE, fields[0]); } return 0; @@ -1039,7 +1039,7 @@ case FEAT_INT: /* Report an F-line with integer values */ #if defined(DDB) if (features[i].flags & FEAT_DDB) { - send_reply(to, SND_EXPLICIT | RPL_STATSFLINE, "F %s %d (setted by DDB)", + send_reply(to, SND_EXPLICIT | RPL_STATSFLINE, "F %s %d (set by DDB)", features[i].type, features[i].v_int); break; } else if (features[i].flags & FEAT_MARK) /* it's been changed */ @@ -1053,7 +1053,7 @@ case FEAT_UINT: /* Report an F-line with unsigned values */ #if defined(DDB) if (features[i].flags & FEAT_DDB) { - send_reply(to, SND_EXPLICIT | RPL_STATSFLINE, "F %s %u (setted by DDB)", + send_reply(to, SND_EXPLICIT | RPL_STATSFLINE, "F %s %u (set by DDB)", features[i].type, features[i].v_int); break; } else if (features[i].flags & FEAT_MARK) /* it's been changed */ @@ -1067,7 +1067,7 @@ case FEAT_BOOL: /* Report an F-line with boolean values */ #if defined(DDB) if (features[i].flags & FEAT_DDB) { - send_reply(to, SND_EXPLICIT | RPL_STATSFLINE, "F %s %s (setted by DDB)", + send_reply(to, SND_EXPLICIT | RPL_STATSFLINE, "F %s %s (set by DDB)", features[i].type, features[i].v_int ? "TRUE" : "FALSE"); break; } else if (features[i].flags & FEAT_MARK) /* it's been changed */ @@ -1082,10 +1082,10 @@ #if defined(DDB) if (features[i].flags & FEAT_DDB) { if (features[i].v_str) - send_reply(to, SND_EXPLICIT | RPL_STATSFLINE, "F %s %s (setted by DDB)", + send_reply(to, SND_EXPLICIT | RPL_STATSFLINE, "F %s %s (set by DDB)", features[i].type, features[i].v_str); else - send_reply(to, SND_EXPLICIT | RPL_STATSFLINE, "F %s (setted by DDB)", + send_reply(to, SND_EXPLICIT | RPL_STATSFLINE, "F %s (set by DDB)", features[i].type); break; } else if (features[i].flags & FEAT_MARK) { /* it's been changed */ Modified: ircd/trunk/ircd/s_conf.c =================================================================== --- ircd/trunk/ircd/s_conf.c 2008-09-12 00:11:06 UTC (rev 210) +++ ircd/trunk/ircd/s_conf.c 2008-09-12 12:45:00 UTC (rev 211) @@ -1009,7 +1009,7 @@ #if defined(DDB) for (ddb = ddb_iterator_first(DDB_UWORLDDB); ddb; ddb = ddb_iterator_next()) - send_reply(to, SND_EXPLICIT | RPL_STATSULINE, "U %s (setted by DDB)", + send_reply(to, SND_EXPLICIT | RPL_STATSULINE, "U %s (set by DDB)", ddb_key(ddb)); #endif } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |