diff options
Diffstat (limited to 'net-p2p/rtorrent/files')
-rw-r--r-- | net-p2p/rtorrent/files/crashfix.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/net-p2p/rtorrent/files/crashfix.patch b/net-p2p/rtorrent/files/crashfix.patch new file mode 100644 index 0000000..1c3f1c9 --- /dev/null +++ b/net-p2p/rtorrent/files/crashfix.patch @@ -0,0 +1,14 @@ +diff --git a/src/command_network.cc b/src/command_network.cc +index 2b6874c..4050141 100644 +--- a/src/command_network.cc ++++ b/src/command_network.cc +@@ -304,7 +304,7 @@ network_port_range_set(const std::string& arg) { + uint16_t port_first; + uint16_t port_last; + +- if (std::sscanf(arg.c_str(), "%" PRIu16 "-%" PRIu16, &port_first, &port_last) != 2) ++ if (std::sscanf(arg.c_str(), "%" SCNu16 "-%" SCNu16, &port_first, &port_last) != 2) + throw torrent::input_error("Invalid port_range argument."); + + torrent::bind()->set_listen_port_range(port_first, port_last, 0); + |