summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcos Pinto <markybob@dipconsultants.com>2007-11-24 18:39:00 +0000
committerMarcos Pinto <markybob@dipconsultants.com>2007-11-24 18:39:00 +0000
commit1b0f7e89c1e34b73f6f483824998f7b9a2687d3a (patch)
tree60b67e9effdb1aaba2ebff2a75d2253fca9b1f75
parentfbf7564d423cd3dc3dad06e2a3fb1af6b9e8c6b0 (diff)
downloaddeluge-1b0f7e89c1e34b73f6f483824998f7b9a2687d3a.tar.gz
deluge-1b0f7e89c1e34b73f6f483824998f7b9a2687d3a.tar.bz2
deluge-1b0f7e89c1e34b73f6f483824998f7b9a2687d3a.zip
asio fix for win32
-rw-r--r--libtorrent/include/libtorrent/asio/error_code.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libtorrent/include/libtorrent/asio/error_code.hpp b/libtorrent/include/libtorrent/asio/error_code.hpp
index 989898ce5..516d599d7 100644
--- a/libtorrent/include/libtorrent/asio/error_code.hpp
+++ b/libtorrent/include/libtorrent/asio/error_code.hpp
@@ -41,10 +41,10 @@ namespace error
system_category = ASIO_WIN_OR_POSIX(0, 0),
/// Error codes from NetDB functions.
- netdb_category = ASIO_WIN_OR_POSIX(_system_category, 1),
+ netdb_category = ASIO_WIN_OR_POSIX(system_category, 1),
/// Error codes from getaddrinfo.
- addrinfo_category = ASIO_WIN_OR_POSIX(_system_category, 2),
+ addrinfo_category = ASIO_WIN_OR_POSIX(system_category, 2),
/// Miscellaneous error codes.
misc_category = ASIO_WIN_OR_POSIX(3, 3),