[IRC-Dev CVS] SF.net SVN: irc-dev: [183] ircd/trunk/ircd/m_server.c
Brought to you by:
zolty
From: <zo...@us...> - 2008-06-15 17:38:24
|
Revision: 183 http://irc-dev.svn.sourceforge.net/irc-dev/?rev=183&view=rev Author: zolty Date: 2008-06-15 10:38:29 -0700 (Sun, 15 Jun 2008) Log Message: ----------- Transicion deep.space P09 Modified Paths: -------------- ircd/trunk/ircd/m_server.c Modified: ircd/trunk/ircd/m_server.c =================================================================== --- ircd/trunk/ircd/m_server.c 2008-06-12 12:38:26 UTC (rev 182) +++ ircd/trunk/ircd/m_server.c 2008-06-15 17:38:29 UTC (rev 183) @@ -560,8 +560,12 @@ if (!prot) return exit_client_msg(cptr, sptr, &me, "Bogus protocol (%s)", parv[5]); else if (prot < atoi(MINOR_PROTOCOL)) +#if 1 /* TRANSICION IRC-HISPANO */ + prot = atoi(MINOR_PROTOCOL); +#else return exit_new_server(cptr, sptr, host, timestamp, "Incompatible protocol: %s", parv[5]); +#endif /* TRANSICION IRC-HISPANO */ Debug((DEBUG_INFO, "Got SERVER %s with timestamp [%s] age %Tu (%Tu)", host, parv[4], start_timestamp, cli_serv(&me)->timestamp)); @@ -697,8 +701,12 @@ if (!prot) return exit_client_msg(cptr, sptr, &me, "Bogus protocol (%s)", parv[5]); else if (prot < atoi(MINOR_PROTOCOL)) +#if 1 /* TRANSICION IRC-HISPANO */ + prot = atoi(MINOR_PROTOCOL); +#else return exit_new_server(cptr, sptr, host, timestamp, "Incompatible protocol: %s", parv[5]); +#endif /* TRANSICION IRC-HISPANO */ Debug((DEBUG_INFO, "Got SERVER %s with timestamp [%s] age %Tu (%Tu)", host, parv[4], start_timestamp, cli_serv(&me)->timestamp)); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |