wireshark: fix info/protocol columns for multi-pdu packets
diff --git a/wireshark_gen/templates/openflow.lua b/wireshark_gen/templates/openflow.lua
index e04b722..94b9153 100644
--- a/wireshark_gen/templates/openflow.lua
+++ b/wireshark_gen/templates/openflow.lua
@@ -131,8 +131,8 @@
                 pkt.cols.protocol:clear()
                 pkt.cols.info:clear()
             else
-                pkt.cols.protocol:prepend(" + ")
-                pkt.cols.info:prepend(" + ")
+                pkt.cols.protocol:append(" + ")
+                pkt.cols.info:append(" + ")
             end
             pkt.cols.protocol:append(protocol)
             pkt.cols.info:append(info)