From 856282da079e9072292040fc4c8a74fc19ddd1bc Mon Sep 17 00:00:00 2001 From: stskeeps Date: Sun, 29 Oct 2000 08:14:43 +0000 Subject: [PATCH] +- Fixed a linking bug (where did that come from) --- Changes | 1 + src/s_serv.c | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index e195e671a..e73817b6d 100644 --- a/Changes +++ b/Changes @@ -665,3 +665,4 @@ - Added some fixes on the SJB64 crashing bug, and added tokenization in channel messsages (yahooooo!) - Fixed the /list bug, reported by many people +- Fixed a linking bug (where did that come from) diff --git a/src/s_serv.c b/src/s_serv.c index 301b05153..b2e5d87a8 100644 --- a/src/s_serv.c +++ b/src/s_serv.c @@ -651,9 +651,10 @@ int m_server(cptr, sptr, parc, parv) { sendto_one(sptr, "ERROR :Bogus server name (%s)", sptr->name, host); - sendto_ops +/* sendto_ops ("WARNING: Bogus server name (%s) from %s (maybe just a fishy client)", host, get_client_name(cptr, TRUE)); +*/ sptr->since += 7; return 0; } @@ -720,7 +721,7 @@ int m_server(cptr, sptr, parc, parv) } /* bzero(cptr->passwd, sizeof(cptr->passwd)); */ } - if ((acptr = find_name(host, NULL))) + if ((acptr = find_server_quickx(host, NULL))) { aClient *ocptr;