Update of /cvsroot/dhcp-agent/dhcp-agent
In directory usw-pr-cvs1:/tmp/cvs-serv12403
Modified Files:
dhcp-net.c
Log Message:
gcc compels me to add some parentheses.
Index: dhcp-net.c
===================================================================
RCS file: /cvsroot/dhcp-agent/dhcp-agent/dhcp-net.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** dhcp-net.c 30 Jun 2002 08:23:45 -0000 1.30
--- dhcp-net.c 30 Jun 2002 20:22:26 -0000 1.31
***************
*** 141,145 ****
* set the descriptor non blocking with BIOCIMMEDIATE. */
! if(fd = pcap_fileno(pcap) < 0) {
push_exception("rawnet", "initialize_pcap_device",
"could not obtain pcap descriptor: %s",
--- 141,145 ----
* set the descriptor non blocking with BIOCIMMEDIATE. */
! if((fd = pcap_fileno(pcap)) < 0) {
push_exception("rawnet", "initialize_pcap_device",
"could not obtain pcap descriptor: %s",
|