X-Git-Url: http://olsr.org/git/?p=olsrd.git;a=blobdiff_plain;f=lib%2Finfo%2Folsrd_info.c;h=e8bed0d598c7435305200d95e9e44bc2d9b61478;hp=5917bf5896993c30ae12538593219de09ad6720d;hb=437181ca0c22642ab8dbe2ff62f097f6b81047bd;hpb=2bbcd1421b3b584877350cb9b83853aa9a715c50 diff --git a/lib/info/olsrd_info.c b/lib/info/olsrd_info.c index 5917bf58..e8bed0d5 100644 --- a/lib/info/olsrd_info.c +++ b/lib/info/olsrd_info.c @@ -761,7 +761,7 @@ static void ipc_action(int fd, void *data __attribute__ ((unused)), unsigned int if (rx_count < 0) { #ifndef NODEBUG - olsr_printf(1, "(%s) s < 0\n", name); + olsr_printf(1, "(%s) rx_count < 0\n", name); #endif /* NODEBUG */ *req = '\0'; drain_request(ipc_connection); @@ -773,7 +773,7 @@ static void ipc_action(int fd, void *data __attribute__ ((unused)), unsigned int if (!rx_count) { #ifndef NODEBUG - olsr_printf(1, "(%s) s == 0\n", name); + olsr_printf(1, "(%s) rx_count == 0\n", name); #endif /* NODEBUG */ *req = '\0'; drain_request(ipc_connection); @@ -785,7 +785,7 @@ static void ipc_action(int fd, void *data __attribute__ ((unused)), unsigned int if (rx_count >= (ssize_t) sizeof(req_buffer)) { #ifndef NODEBUG - olsr_printf(1, "(%s) s > %ld\n", name, (long int) sizeof(req_buffer)); + olsr_printf(1, "(%s) rx_count > %ld\n", name, (long int) sizeof(req_buffer)); #endif /* NODEBUG */ req[sizeof(req_buffer) - 1] = '\0'; drain_request(ipc_connection);