diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2024-01-14 14:27:26 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2024-02-01 21:39:21 +0100 |
commit | f126255d6ab62704d96a1fe490661969afc5a51e (patch) | |
tree | b637e98f51e6027fce4fb72cd4db2af4f128c532 /src/gui/curses | |
parent | 6cfb31c306b9deb120a9fb5c564a1456a72af665 (diff) | |
download | weechat-f126255d6ab62704d96a1fe490661969afc5a51e.zip |
core: add support of base64url in encode/decode functions (issue #2066)
Diffstat (limited to 'src/gui/curses')
-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 6935fddb6..f7d9fe482 100644 --- a/src/gui/curses/gui-curses-window.c +++ b/src/gui/curses/gui-curses-window.c @@ -2646,7 +2646,7 @@ gui_window_send_clipboard (const char *storage_unit, const char *text) text_base64 = malloc ((length * 4) + 1); if (text_base64) { - if (string_base64_encode (text, length, text_base64) >= 0) + if (string_base64_encode (0, text, length, text_base64) >= 0) { fprintf (stderr, "\033]52;%s;%s\a", (storage_unit) ? storage_unit : "", |