odp-util: Print in_port in decimal in format_odp_flow_key().
authorBen Pfaff <blp@nicira.com>
Fri, 29 Oct 2010 16:50:56 +0000 (09:50 -0700)
committerBen Pfaff <blp@nicira.com>
Fri, 29 Oct 2010 16:50:56 +0000 (09:50 -0700)
Suggested-by: Justin Pettit <jpettit@nicira.com>
lib/odp-util.c

index 998dab2292f5a60bbf4ae1753a95d2aca6754005..8367597b3d12c25d437ff457d2bbc7a3c1b19d94 100644 (file)
@@ -42,7 +42,8 @@ odp_actions_add(struct odp_actions *actions, uint16_t type)
 void
 format_odp_flow_key(struct ds *ds, const struct odp_flow_key *key)
 {
-    ds_put_format(ds, "tun_id0x%08x in_port%04x tci(", key->tun_id, key->in_port);
+    ds_put_format(ds, "tun_id0x%08x in_port%d tci(",
+                  key->tun_id, key->in_port);
     if (key->dl_tci) {
         ds_put_format(ds, "vlan%"PRIu16",pcp%d",
                       vlan_tci_to_vid(key->dl_tci),