1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-01-03 14:57:44 -05:00

Compile fix, reported by zas

This commit is contained in:
Jonas Fonseca 2005-12-13 16:28:14 +01:00 committed by Jonas Fonseca
parent b2c1af1611
commit cd4fd51438

View File

@ -195,7 +195,7 @@ do_send_bittorrent_tracker_request(struct connection *conn)
key = get_opt_str("protocol.bittorrent.tracker.key"); key = get_opt_str("protocol.bittorrent.tracker.key");
if (*key) { if (*key) {
add_to_string(&request, "&key=", key); add_to_string(&request, "&key=");
encode_uri_string(&request, key, strlen(key), 1); encode_uri_string(&request, key, strlen(key), 1);
} }