You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
403 B

  1. diff --git a/tty.c b/tty.c
  2. index eb2511c..576edbc 100644
  3. --- a/tty.c
  4. +++ b/tty.c
  5. @@ -1067,7 +1067,7 @@ tty_cmd_setselection(struct tty *tty, const struct tty_ctx *ctx)
  6. off = 4 * ((ctx->num + 2) / 3) + 1; /* storage for base64 */
  7. buf = xmalloc(off);
  8. - b64_ntop(ctx->ptr, ctx->num, buf, off);
  9. + local_b64_ntop(ctx->ptr, ctx->num, buf, off);
  10. tty_putcode_ptr2(tty, TTYC_MS, "", buf);
  11. free(buf);