diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-06-28 19:49:32 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-06-28 19:49:32 +0200 |
commit | 2f7a5a4147d546753bef505cee4cd29aa3dcaf07 (patch) | |
tree | fff8de5328e269776da426566c5e4065efdaa18b /src/plugins/relay | |
parent | 4a89b4ae5900d02985e1d8641bc27f1690b9e94b (diff) | |
download | weechat-2f7a5a4147d546753bef505cee4cd29aa3dcaf07.zip |
Rename function string_explode to string_split
Diffstat (limited to 'src/plugins/relay')
-rw-r--r-- | src/plugins/relay/relay-client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/relay/relay-client.c b/src/plugins/relay/relay-client.c index aa465b088..39dc7f6c5 100644 --- a/src/plugins/relay/relay-client.c +++ b/src/plugins/relay/relay-client.c @@ -152,7 +152,7 @@ relay_client_send_infolist (struct t_relay_client *client, fields = weechat_infolist_fields (infolist); if (fields) { - argv = weechat_string_explode (fields, ",", 0, 0, &argc); + argv = weechat_string_split (fields, ",", 0, 0, &argc); if (argv && (argc > 0)) { for (i = 0; i < argc; i++) @@ -193,7 +193,7 @@ relay_client_send_infolist (struct t_relay_client *client, } } if (argv) - weechat_string_free_exploded (argv); + weechat_string_free_split (argv); } } } |