summaryrefslogtreecommitdiffstats
path: root/c/src/exec/libnetworking/netinet/udp_usrreq.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-08-20 21:47:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-08-20 21:47:37 +0000
commitff0f694d466fb114c185bf464811658f97d012f1 (patch)
tree1eef0becdabdf6a9902d265a84fc9bf9fd9389d5 /c/src/exec/libnetworking/netinet/udp_usrreq.c
parentchanged version to 980820-BSD (diff)
downloadrtems-ff0f694d466fb114c185bf464811658f97d012f1.tar.bz2
Fixed many warnings.
Diffstat (limited to 'c/src/exec/libnetworking/netinet/udp_usrreq.c')
-rw-r--r--c/src/exec/libnetworking/netinet/udp_usrreq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/exec/libnetworking/netinet/udp_usrreq.c b/c/src/exec/libnetworking/netinet/udp_usrreq.c
index 5198575c0c..16c5fce2df 100644
--- a/c/src/exec/libnetworking/netinet/udp_usrreq.c
+++ b/c/src/exec/libnetworking/netinet/udp_usrreq.c
@@ -250,7 +250,7 @@ udp_input(m, iphlen)
* port. It * assumes that an application will never
* clear these options after setting them.
*/
- if ((last->inp_socket->so_options&(SO_REUSEPORT|SO_REUSEADDR) == 0))
+ if (((last->inp_socket->so_options&(SO_REUSEPORT|SO_REUSEADDR)) == 0))
break;
}