[hipl-dev] [Branch ~hipl-core/hipl/trunk] Rev 5313: add missing line breaks in debug output

  • From: noreply@xxxxxxxxxxxxx
  • To: HIPL core team <hipl-dev@xxxxxxxxxxxxx>
  • Date: Tue, 28 Dec 2010 17:21:29 -0000

------------------------------------------------------------
revno: 5313
committer: Rene Hummen <rene.hummen@xxxxxxxxxxxxxxxxx>
branch nick: hipl
timestamp: Tue 2010-12-28 18:18:29 +0100
message:
  add missing line breaks in debug output
modified:
  hipd/hip_socket.c


--
lp:hipl
https://code.launchpad.net/~hipl-core/hipl/trunk

Your team HIPL core team is subscribed to branch lp:hipl.
To unsubscribe from this branch go to 
https://code.launchpad.net/~hipl-core/hipl/trunk/+edit-subscription
=== modified file 'hipd/hip_socket.c'
--- hipd/hip_socket.c   2010-12-10 08:50:38 +0000
+++ hipd/hip_socket.c   2010-12-28 17:18:29 +0000
@@ -66,7 +66,7 @@
 {
     int err = 0;
 
-    HIP_DEBUG("received on: hip_raw_sock_input_v6");
+    HIP_DEBUG("received on: hip_raw_sock_input_v6\n");
 
     if (hip_read_control_msg_v6(hip_raw_sock_input_v6,
                                 ctx,
@@ -86,7 +86,7 @@
 {
     int err = 0;
 
-    HIP_DEBUG("received on: hip_raw_sock_input_v4");
+    HIP_DEBUG("received on: hip_raw_sock_input_v4\n");
 
     if (hip_read_control_msg_v4(hip_raw_sock_input_v4,
                                 ctx,
@@ -106,7 +106,7 @@
 {
     int err = 0;
 
-    HIP_DEBUG("received on: hip_nat_sock_input_udp");
+    HIP_DEBUG("received on: hip_nat_sock_input_udp\n");
 
     err = hip_read_control_msg_v4(hip_nat_sock_input_udp,
                                   ctx,
@@ -126,7 +126,7 @@
     uint8_t msg_type = 0;
     struct sockaddr_in6 app_src;
 
-    HIP_DEBUG("received on: hip_user_sock");
+    HIP_DEBUG("received on: hip_user_sock\n");
 
     HIP_IFEL(hip_read_user_control_msg(hip_user_sock,
                                        ctx->input_msg,
@@ -165,7 +165,7 @@
 
 static int hip_handle_nl_ipsec_sock(UNUSED struct hip_packet_context *ctx)
 {
-    HIP_DEBUG("received on: hip_nl_ipsec");
+    HIP_DEBUG("received on: hip_nl_ipsec\n");
 
     if (hip_netlink_receive(&hip_nl_ipsec,
                             hip_netdev_event, NULL)) {
@@ -178,7 +178,7 @@
 
 static int hip_handle_nl_route_sock(UNUSED struct hip_packet_context *ctx)
 {
-    HIP_DEBUG("received on: hip_nl_route");
+    HIP_DEBUG("received on: hip_nl_route\n");
 
     if (hip_netlink_receive(&hip_nl_route,
                             hip_netdev_event, NULL)) {

Other related posts:

  • » [hipl-dev] [Branch ~hipl-core/hipl/trunk] Rev 5313: add missing line breaks in debug output - noreply