[hipl-commit] [tiny] Rev 3783: fixed incorrect use of HIP_IFEL

  • From: Rene Hummen <rene.hummen@xxxxxxxxxxxxxxxxx>
  • To: hipl-commit@xxxxxxxxxxxxx
  • Date: Fri, 21 May 2010 18:20:16 +0300

Committer: Rene Hummen <rene.hummen@xxxxxxxxxxxxxxxxx>
Date: 21/05/2010 at 18:20:16
Revision: 3783
Revision-id: rene.hummen@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Branch nick: tiny

Log:
  fixed incorrect use of HIP_IFEL

Modified:
  M  hipd/init.c

=== modified file 'hipd/init.c'
--- hipd/init.c 2010-05-20 16:14:34 +0000
+++ hipd/init.c 2010-05-21 15:20:14 +0000
@@ -868,10 +868,10 @@
     hip_xfrm_set_nl_ipsec(&hip_nl_ipsec);
 
     hip_raw_sock_output_v6  = hip_init_raw_sock_v6(IPPROTO_HIP);
-    HIP_IFEL(hip_raw_sock_output_v6, -1, "raw sock output v6\n");
+    HIP_IFEL(hip_raw_sock_output_v6 < 0, -1, "raw sock output v6\n");
 
     hip_raw_sock_output_v4  = hip_init_raw_sock_v4(IPPROTO_HIP);
-    HIP_IFEL(hip_raw_sock_output_v4, -1, "raw sock output v4\n");
+    HIP_IFEL(hip_raw_sock_output_v4 < 0, -1, "raw sock output v4\n");
 
     /* hip_nat_sock_input should be initialized after hip_nat_sock_output
        because for the sockets bound to the same address/port, only the last 
socket seems
@@ -880,13 +880,13 @@
        extension (sending packets from multiple source addresses). */
 
     hip_nat_sock_output_udp = hip_init_raw_sock_v4(IPPROTO_UDP);
-    HIP_IFEL(hip_nat_sock_output_udp, -1, "raw sock output udp\n");
+    HIP_IFEL(hip_nat_sock_output_udp < 0, -1, "raw sock output udp\n");
 
     hip_raw_sock_input_v6   = hip_init_raw_sock_v6(IPPROTO_HIP);
-    HIP_IFEL(hip_raw_sock_input_v6, -1, "raw sock input v6\n");
+    HIP_IFEL(hip_raw_sock_input_v6 < 0, -1, "raw sock input v6\n");
 
     hip_raw_sock_input_v4   = hip_init_raw_sock_v4(IPPROTO_HIP);
-    HIP_IFEL(hip_raw_sock_input_v4, -1, "raw sock input v4\n");
+    HIP_IFEL(hip_raw_sock_input_v4 < 0, -1, "raw sock input v4\n");
 
     HIP_IFEL(hip_create_nat_sock_udp(&hip_nat_sock_input_udp, 0, 0), -1, "raw 
sock input udp\n");

Other related posts:

  • » [hipl-commit] [tiny] Rev 3783: fixed incorrect use of HIP_IFEL - Rene Hummen