0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-09 05:29:00 +02:00

[svn] Call add_to_hostname_hash() with correct (orig) hostname.

This commit is contained in:
jilles 2007-06-22 14:59:09 -07:00
parent 88cb7f9965
commit 66b4a7ae7a
3 changed files with 13 additions and 4 deletions

View file

@ -1,3 +1,12 @@
jilles 2007/06/10 16:14:03 UTC (20070610-3516)
Log:
Version bump on trunk to 2.3.
Changes: Modified:
+1 -1 trunk/configure.ac (File Modified)
nenolod 2007/06/06 16:25:21 UTC (20070606-3514)
Log:
- "please report this to the ratbox developers" -> "please report this to the charybdis developers". not sure how we overlooked this for so long.

View file

@ -1 +1 @@
#define SERNO "20070606-3514"
#define SERNO "20070610-3516"

View file

@ -21,7 +21,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
* $Id: m_nick.c 3420 2007-04-22 14:02:54Z jilles $
* $Id: m_nick.c 3518 2007-06-22 21:59:09Z jilles $
*/
#include "stdinc.h"
@ -85,7 +85,7 @@ struct Message save_msgtab = {
mapi_clist_av1 nick_clist[] = { &nick_msgtab, &uid_msgtab, &euid_msgtab,
&save_msgtab, NULL };
DECLARE_MODULE_AV1(nick, NULL, NULL, nick_clist, NULL, NULL, "$Revision: 3420 $");
DECLARE_MODULE_AV1(nick, NULL, NULL, nick_clist, NULL, NULL, "$Revision: 3518 $");
static int change_remote_nick(struct Client *, struct Client *, time_t,
const char *, int);
@ -1219,7 +1219,7 @@ register_client(struct Client *client_p, struct Client *server,
free_nd_entry(nd);
add_to_client_hash(nick, source_p);
add_to_hostname_hash(source_p->host, source_p);
add_to_hostname_hash(source_p->orighost, source_p);
monitor_signon(source_p);
m = &parv[4][1];