Changeset 18da20b for irc_send.c
- Timestamp:
- 2010-06-06T00:33:33Z (13 years ago)
- Branches:
- master
- Children:
- 1f0224c
- Parents:
- c1a8a16
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_send.c
rc1a8a16 r18da20b 150 150 void irc_send_part( irc_channel_t *ic, irc_user_t *iu, const char *reason ) 151 151 { 152 irc_write( ic->irc, ":%s!%s@%s PART %s :%s", iu->nick, iu->user, iu->host, ic->name, reason );152 irc_write( ic->irc, ":%s!%s@%s PART %s :%s", iu->nick, iu->user, iu->host, ic->name, reason ? : "" ); 153 153 } 154 154
Note: See TracChangeset
for help on using the changeset viewer.