summaryrefslogtreecommitdiff
path: root/src/fe-common/irc/fe-ircnet.c
diff options
context:
space:
mode:
authorAlexander Færøy <ahf@irssi.org>2009-02-08 17:22:42 +0000
committerahf <ahf@dbcabf3a-b0e7-0310-adc4-f8d773084564>2009-02-08 17:22:42 +0000
commitc561ba35e6aa382124147e88f45683c0021db02f (patch)
treea0ec48e7655295c69662a9edd396038951527e92 /src/fe-common/irc/fe-ircnet.c
parent32e01a5a06e35c98c478413fb6c86818dd930ff3 (diff)
downloadirssi-c561ba35e6aa382124147e88f45683c0021db02f.zip
Code Cleanup:
Use g_string_append_printf() instead of g_string_sprintfa() (which is considered deprecated.) git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5003 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/irc/fe-ircnet.c')
-rw-r--r--src/fe-common/irc/fe-ircnet.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/fe-common/irc/fe-ircnet.c b/src/fe-common/irc/fe-ircnet.c
index 3b39f3a5..b35ae898 100644
--- a/src/fe-common/irc/fe-ircnet.c
+++ b/src/fe-common/irc/fe-ircnet.c
@@ -45,33 +45,33 @@ static void cmd_network_list(void)
g_string_truncate(str, 0);
if (rec->nick != NULL)
- g_string_sprintfa(str, "nick: %s, ", rec->nick);
+ g_string_append_printf(str, "nick: %s, ", rec->nick);
if (rec->username != NULL)
- g_string_sprintfa(str, "username: %s, ", rec->username);
+ g_string_append_printf(str, "username: %s, ", rec->username);
if (rec->realname != NULL)
- g_string_sprintfa(str, "realname: %s, ", rec->realname);
+ g_string_append_printf(str, "realname: %s, ", rec->realname);
if (rec->own_host != NULL)
- g_string_sprintfa(str, "host: %s, ", rec->own_host);
+ g_string_append_printf(str, "host: %s, ", rec->own_host);
if (rec->autosendcmd != NULL)
- g_string_sprintfa(str, "autosendcmd: %s, ", rec->autosendcmd);
+ g_string_append_printf(str, "autosendcmd: %s, ", rec->autosendcmd);
if (rec->usermode != NULL)
- g_string_sprintfa(str, "usermode: %s, ", rec->usermode);
+ g_string_append_printf(str, "usermode: %s, ", rec->usermode);
if (rec->cmd_queue_speed > 0)
- g_string_sprintfa(str, "cmdspeed: %d, ", rec->cmd_queue_speed);
+ g_string_append_printf(str, "cmdspeed: %d, ", rec->cmd_queue_speed);
if (rec->max_cmds_at_once > 0)
- g_string_sprintfa(str, "cmdmax: %d, ", rec->max_cmds_at_once);
+ g_string_append_printf(str, "cmdmax: %d, ", rec->max_cmds_at_once);
if (rec->max_query_chans > 0)
- g_string_sprintfa(str, "querychans: %d, ", rec->max_query_chans);
+ g_string_append_printf(str, "querychans: %d, ", rec->max_query_chans);
if (rec->max_kicks > 0)
- g_string_sprintfa(str, "max_kicks: %d, ", rec->max_kicks);
+ g_string_append_printf(str, "max_kicks: %d, ", rec->max_kicks);
if (rec->max_msgs > 0)
- g_string_sprintfa(str, "max_msgs: %d, ", rec->max_msgs);
+ g_string_append_printf(str, "max_msgs: %d, ", rec->max_msgs);
if (rec->max_modes > 0)
- g_string_sprintfa(str, "max_modes: %d, ", rec->max_modes);
+ g_string_append_printf(str, "max_modes: %d, ", rec->max_modes);
if (rec->max_whois > 0)
- g_string_sprintfa(str, "max_whois: %d, ", rec->max_whois);
+ g_string_append_printf(str, "max_whois: %d, ", rec->max_whois);
if (str->len > 1) g_string_truncate(str, str->len-2);
printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP,