diff options
author | dequis <dx@dxzone.com.ar> | 2015-04-06 14:01:55 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2015-04-06 14:01:55 -0300 |
commit | a9b1e0edf0280371772e346ee96d24f732bef59f (patch) | |
tree | 158744fdfb0b128746de77f36aa9ab26886caf36 /irc.h | |
parent | 8bcd1605cda90ed960f8c0e2a0d0464bb79e1197 (diff) |
irc_channel: use irc_t instead of bee_t
Fixes the test suite. I guess it's useful for something.
Diffstat (limited to 'irc.h')
-rw-r--r-- | irc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -298,7 +298,7 @@ void irc_channel_printf(irc_channel_t *ic, char *format, ...); gboolean irc_channel_name_ok(const char *name); void irc_channel_name_strip(char *name); int irc_channel_name_cmp(const char *a_, const char *b_); -char *irc_channel_name_gen(bee_t *bee, const char *name); +char *irc_channel_name_gen(irc_t *irc, const char *name); gboolean irc_channel_name_hint(irc_channel_t *ic, const char *name); void irc_channel_update_ops(irc_channel_t *ic, char *value); char *set_eval_irc_channel_ops(struct set *set, char *value); |