diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2018-11-04 00:30:57 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2018-11-04 14:49:11 +0100 |
commit | ed3f281ba9302d58644771082467983328643ff7 (patch) | |
tree | 48d1878ccf266cb3275e26bdbe7d51bab7c75c43 /src/gui | |
parent | a8b6fa08b743066693fe1da02985d0f5422b7d36 (diff) | |
download | weechat-ed3f281ba9302d58644771082467983328643ff7.zip |
api: add functions string_base_{encode,decode}, remove functions string_{encode,decode}_base64
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/curses/gui-curses-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/curses/gui-curses-window.c b/src/gui/curses/gui-curses-window.c index e9ff4aae3..a177e2f95 100644 --- a/src/gui/curses/gui-curses-window.c +++ b/src/gui/curses/gui-curses-window.c @@ -2509,7 +2509,7 @@ gui_window_send_clipboard (const char *storage_unit, const char *text) text_base64 = malloc ((length * 4) + 1); if (text_base64) { - if (string_encode_base64 (text, length, text_base64) >= 0) + if (string_base64_encode (text, length, text_base64) >= 0) { fprintf (stderr, "\033]52;%s;%s\a", (storage_unit) ? storage_unit : "", |