aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-12-18 13:44:45 +0000
committerGravatar Sadie Powell2022-12-18 13:44:45 +0000
commit3588a46e6fd6d14c8a1b4abd29a754e63f0f1189 (patch)
tree40d0400b5725bea18406019582d59e94c905a53e /include
parentRework the levels things are logged at to make more sense. (diff)
We actually want ADDRESS_FAMILY not SOCKET_ADDRESS for sa_family_t.
Apparently I can not read headers properly.
Diffstat (limited to 'include')
-rw-r--r--include/socket.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/socket.h b/include/socket.h
index 691cb196a..47b503a0c 100644
--- a/include/socket.h
+++ b/include/socket.h
@@ -35,7 +35,7 @@
# include <sys/un.h>
#else
# include <afunix.h>
-typedef SOCKET_ADDRESS sa_family_t;
+typedef ADDRESS_FAMILY sa_family_t;
#endif
#include <cerrno>