diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-04-02 04:09:45 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-04-02 04:09:58 -0400 |
| commit | e9d64eaacaa4e2a71489b24b2b45ac26fbaead3c (patch) | |
| tree | 45777ba39223777b4bf7907c4f8c6c738a8c3e18 /src/cmd.c | |
| parent | ab278aca29eebc23eb6538fb5060f51afb8dca86 (diff) | |
| download | fujinet-chat-e9d64eaacaa4e2a71489b24b2b45ac26fbaead3c.tar.gz | |
Replace conf->blah with config.blah (see the definition of "OS" in <atari.h>). 6075 bytes free.
Diffstat (limited to 'src/cmd.c')
| -rw-r--r-- | src/cmd.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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(); |
