mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-10 05:02:50 +01:00
Use constant instead of literal.
This commit is contained in:
parent
a1d2272dc0
commit
4ed1acfd52
@ -91,7 +91,7 @@ tcp_send_real (void *ssl, int sok, GIConv write_converter, char *buf, int len)
|
||||
int ret;
|
||||
|
||||
gsize buf_encoded_len;
|
||||
gchar *buf_encoded = text_convert_invalid (buf, len, write_converter, "?", &buf_encoded_len);
|
||||
gchar *buf_encoded = text_convert_invalid (buf, len, write_converter, arbitrary_encoding_fallback_string, &buf_encoded_len);
|
||||
#ifdef USE_OPENSSL
|
||||
if (!ssl)
|
||||
ret = send (sok, buf_encoded, buf_encoded_len, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user