From e9d64eaacaa4e2a71489b24b2b45ac26fbaead3c Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Thu, 2 Apr 2026 04:09:45 -0400 Subject: Replace conf->blah with config.blah (see the definition of "OS" in ). 6075 bytes free. --- src/cmd.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/cmd.c') diff --git a/src/cmd.c b/src/cmd.c index b2ae011..03a6a26 100644 --- a/src/cmd.c +++ b/src/cmd.c @@ -88,7 +88,7 @@ static void cmd_chan_text(void) { /* 0x02 = ^B = enable bold */ scr_print_active("<\x02"); - scr_print_active(conf->nick); + scr_print_active(config.nick); scr_putc_active('\x02'); scr_print_active("> "); @@ -318,7 +318,7 @@ static void do_me(void) { txbuf_send(); scr_print_current("\x02* "); - scr_print_current(conf->nick); + scr_print_current(config.nick); scr_print_current("\x02 "); scr_print_current(arg1); scr_eol_current(); @@ -476,10 +476,10 @@ void cmd_rejoin_chans(void) { } } - if(!*(conf->extra_channels)) + if(!*(config.extra_channels)) return; - strncpy(edit_box, conf->extra_channels, 128); + strncpy(edit_box, config.extra_channels, 128); arg1 = edit_box; mass_join(0); edbox_clear(); -- cgit v1.2.3