Fix return value call on send() when sending NetFlow messages.
authorJustin Pettit <jpettit@nicira.com>
Wed, 13 May 2009 05:58:25 +0000 (22:58 -0700)
committerJustin Pettit <jpettit@nicira.com>
Wed, 13 May 2009 05:58:25 +0000 (22:58 -0700)
commit9fd0c71f23d8c6dfecd5394d961fdf97296a3610
tree3b5293bc23b1f8e3bb03bd5e1ee6ecd75f71c710
parent35cc2980d9393c16c69dfe5a3f9faddb77eb6811
Fix return value call on send() when sending NetFlow messages.

When sending NetFlow messages, we use the send() call, but were checking
the wrong return value.  It would report an error when any non-zero
value was returned.  The send() call returns the number of bytes sent or
-1 on error.  Thus, whenever a NetFlow message was sent, it would
generate an error message.  Now, we only log a message when a value of
-1 is returned.  (Bug #1166)
secchan/netflow.c