From 377d9554d3bf35c20af3245f12bed47cdcfd8d1d Mon Sep 17 00:00:00 2001 From: drbin Date: Sat, 2 Sep 2000 16:03:15 +0000 Subject: [PATCH] Fixed previous thing again --- src/s_user.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/s_user.c b/src/s_user.c index 06f2f1587..fa446d020 100644 --- a/src/s_user.c +++ b/src/s_user.c @@ -962,8 +962,8 @@ static int register_user(cptr, sptr, nick, username, umode, virthost) */ if (MyConnect(sptr)) { - if (*sptr->passwd) - if (*sptr->passwd && (nsptr = find_person(NickServ, NULL))) + if (sptr->passwd) + if (sptr->passwd && (nsptr = find_person(NickServ, NULL))) sendto_one(nsptr, ":%s PRIVMSG %s@%s :IDENTIFY %s", sptr->name, NickServ, SERVICES_NAME, sptr->passwd); /* Force the user to join the given chans -- codemastr */