diff --git a/src/udp.c b/src/udp.c index 1c75d3c7..f4dcbfb4 100644 --- a/src/udp.c +++ b/src/udp.c @@ -115,7 +115,7 @@ udp_get_solip( void ) #else struct protoent *pent; pent = getprotobyname("ip"); - return = (pent != NULL) ? pent->p_proto : 0; + return (pent != NULL) ? pent->p_proto : 0; #endif }