From be37c4fca53b98b80b5ef6129345460666f451b7 Mon Sep 17 00:00:00 2001 From: pk910 Date: Thu, 11 Aug 2011 22:26:03 +0200 Subject: [PATCH] fixed test output to see if it really detects if a user is authed or not --- IRCParser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IRCParser.c b/IRCParser.c index c3d9bd5..de03a73 100644 --- a/IRCParser.c +++ b/IRCParser.c @@ -87,7 +87,7 @@ static USERLIST_CALLBACK(got_channel_userlist) { putsock(client, "PRIVMSG %s :[BOT JOIN] Users on this Channel:", chan->name); struct ChanUser *chanuser; for(chanuser = getChannelUsers(chan, NULL); chanuser; chanuser = getChannelUsers(chan, chanuser)) { - putsock(client, "PRIVMSG %s : %s!%s@%s [%s] rights: %d", chan->name, chanuser->user->nick, chanuser->user->ident, chanuser->user->host, ((chanuser->user->flags & USERFLAG_ISAUTHED) ? chanuser->user->auth : "0"), chanuser->flags); + putsock(client, "PRIVMSG %s : %s!%s@%s [%s] rights: %d", chan->name, chanuser->user->nick, chanuser->user->ident, chanuser->user->host, ((chanuser->user->flags & USERFLAG_ISAUTHED) ? chanuser->user->auth : "*"), chanuser->flags); } } -- 2.20.1