When printing flow expired messages, we should end the line with "\n" instead of...
authorroot <root@salsa.nicira.com>
Thu, 8 May 2008 01:19:24 +0000 (18:19 -0700)
committerroot <root@salsa.nicira.com>
Thu, 8 May 2008 01:20:13 +0000 (18:20 -0700)
lib/ofp-print.c

index 142943f..6540419 100644 (file)
@@ -406,7 +406,7 @@ ofp_print_flow_expired(struct ds *string, const void *oh, size_t len,
 
     ofp_print_match(string, &ofe->match);
     ds_put_format(string, 
-         " pri%"PRIu16" secs%"PRIu32" pkts%"PRIu64" bytes%"PRIu64"n", 
+         " pri%"PRIu16" secs%"PRIu32" pkts%"PRIu64" bytes%"PRIu64"\n", 
          ofe->match.wildcards ? ntohs(ofe->priority) : (uint16_t)-1,
          ntohl(ofe->duration), ntohll(ofe->packet_count), 
          ntohll(ofe->byte_count));