diff options
Diffstat (limited to 'lib/sockunion.c')
-rw-r--r-- | lib/sockunion.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sockunion.c b/lib/sockunion.c index 9a063190..e08a3745 100644 --- a/lib/sockunion.c +++ b/lib/sockunion.c @@ -167,11 +167,11 @@ sockunion_set_family(sockunion su, sa_family_t family) #ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN if (family == AF_INET) - sockunion_sin_len(sockunion su) ; + sockunion_sin_len(su) ; #endif #if defined(HAVE_IPV6) && defined(SIN6_LEN) if (family == AF_INET6) - sockunion_sin6_len(sockunion su) ; + sockunion_sin6_len(su) ; #endif return 0 ; |