Changeset 95c3ea9 for irc.c


Ignore:
Timestamp:
2010-06-10T16:36:23Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
5266354
Parents:
6acc033
Message:

Fixing hostname in "exiting" opermsgs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.c

    r6acc033 r95c3ea9  
    168168               
    169169                ipc_to_master_str( "OPERMSG :Client exiting: %s@%s [%s]\r\n",
    170                                    irc->user->nick ? irc->user->nick : "(NONE)", irc->root->host, reason );
     170                                   irc->user->nick ? irc->user->nick : "(NONE)", irc->user->host, reason );
    171171               
    172172                g_free( reason );
     
    178178               
    179179                ipc_to_master_str( "OPERMSG :Client exiting: %s@%s [%s]\r\n",
    180                                    irc->user->nick ? irc->user->nick : "(NONE)", irc->root->host, "No reason given" );
     180                                   irc->user->nick ? irc->user->nick : "(NONE)", irc->user->host, "No reason given" );
    181181        }
    182182       
Note: See TracChangeset for help on using the changeset viewer.