diff options
author | Sadie Powell <sadie@witchery.services> | 2022-01-04 12:36:35 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2022-01-04 12:36:35 +0000 |
commit | ec7dfb3675973e0e0ec6df69c871797bc94e8413 (patch) | |
tree | ddecd3f49a62c064bdcecc6fe7d4f95996b5dfb0 /src/socket_clients.cpp | |
parent | 106750db77be01c7b2d277a12d9b80de15cb8fbb (diff) |
Use C++11 header names instead of their deprecated equivalents.
Diffstat (limited to 'src/socket_clients.cpp')
-rw-r--r-- | src/socket_clients.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/socket_clients.cpp b/src/socket_clients.cpp index 1b559eb25..3f257734d 100644 --- a/src/socket_clients.cpp +++ b/src/socket_clients.cpp @@ -14,7 +14,7 @@ #include "logger.h" #include "sockets.h" -#include <errno.h> +#include <cerrno> void ConnectionSocket::Connect(const Anope::string &TargetHost, int Port) { |