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
428 B

  1. diff --git a/compat/b64_ntop.c b/compat/b64_ntop.c
  2. index 2b4dc2d..a1314ca 100644
  3. --- a/compat/b64_ntop.c
  4. +++ b/compat/b64_ntop.c
  5. @@ -122,7 +122,7 @@ static const char Pad64 = '=';
  6. */
  7. int
  8. -b64_ntop(uint8_t const *src, size_t srclength, char *target, size_t targsize) {
  9. +local_b64_ntop(uint8_t const *src, size_t srclength, char *target, size_t targsize) {
  10. size_t datalength = 0;
  11. uint8_t input[3];
  12. uint8_t output[4];