Ver código fonte

[Minor] Fix spaces encoding in QP

tags/1.5.0
Vsevolod Stakhov 7 anos atrás
pai
commit
d12f1f8c95
1 arquivos alterados com 1 adições e 2 exclusões
  1. 1
    2
      src/libutil/str_util.c

+ 1
- 2
src/libutil/str_util.c Ver arquivo

@@ -1954,8 +1954,7 @@ rspamd_encode_qp2047_buf (const gchar *in, gsize inlen,
*o++ = c;
}
else if (c == ' ') {
*o++ = "_";
in++;
*o++ = '_';
}
else if (end - o >= 3){
*o++ = '=';

Carregando…
Cancelar
Salvar