Add missing semi-colons
This commit is contained in:
parent
67c09ebf56
commit
34fe76780e
@ -1322,19 +1322,19 @@ static PyObject *torrent_proxy_settings(PyObject *self, PyObject *args)
|
|||||||
M_proxy_settings->port = portnum;
|
M_proxy_settings->port = portnum;
|
||||||
|
|
||||||
if (peerproxy){
|
if (peerproxy){
|
||||||
M_ses->set_peer_proxy(*M_proxy_settings)
|
M_ses->set_peer_proxy(*M_proxy_settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (webseedproxy){
|
if (webseedproxy){
|
||||||
M_ses->set_web_seed_proxy(*M_proxy_settings)
|
M_ses->set_web_seed_proxy(*M_proxy_settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (trackerproxy){
|
if (trackerproxy){
|
||||||
M_ses->set_tracker_proxy(*M_proxy_settings)
|
M_ses->set_tracker_proxy(*M_proxy_settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dhtproxy){
|
if (dhtproxy){
|
||||||
M_ses->set_dht_proxy(*M_proxy_settings)
|
M_ses->set_dht_proxy(*M_proxy_settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
Py_INCREF(Py_None); return Py_None;
|
Py_INCREF(Py_None); return Py_None;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user