[svn] Call add_to_hostname_hash() with correct (orig) hostname.
This commit is contained in:
parent
88cb7f9965
commit
66b4a7ae7a
3 changed files with 13 additions and 4 deletions
|
@ -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)
|
nenolod 2007/06/06 16:25:21 UTC (20070606-3514)
|
||||||
Log:
|
Log:
|
||||||
- "please report this to the ratbox developers" -> "please report this to the charybdis developers". not sure how we overlooked this for so long.
|
- "please report this to the ratbox developers" -> "please report this to the charybdis developers". not sure how we overlooked this for so long.
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
#define SERNO "20070606-3514"
|
#define SERNO "20070610-3516"
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
||||||
* USA
|
* 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"
|
#include "stdinc.h"
|
||||||
|
@ -85,7 +85,7 @@ struct Message save_msgtab = {
|
||||||
mapi_clist_av1 nick_clist[] = { &nick_msgtab, &uid_msgtab, &euid_msgtab,
|
mapi_clist_av1 nick_clist[] = { &nick_msgtab, &uid_msgtab, &euid_msgtab,
|
||||||
&save_msgtab, NULL };
|
&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,
|
static int change_remote_nick(struct Client *, struct Client *, time_t,
|
||||||
const char *, int);
|
const char *, int);
|
||||||
|
@ -1219,7 +1219,7 @@ register_client(struct Client *client_p, struct Client *server,
|
||||||
free_nd_entry(nd);
|
free_nd_entry(nd);
|
||||||
|
|
||||||
add_to_client_hash(nick, source_p);
|
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);
|
monitor_signon(source_p);
|
||||||
|
|
||||||
m = &parv[4][1];
|
m = &parv[4][1];
|
||||||
|
|
Loading…
Reference in a new issue