From: Ben Pfaff <blp@nicira.com>
Date: Fri, 31 Oct 2008 17:07:43 +0000 (-0700)
Subject: Improve the error message when vconn gets an unexpected version.
X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=a662402bac1b52fb00c1e1803346b65725a8bebf;p=sliver-openvswitch.git

Improve the error message when vconn gets an unexpected version.
---

diff --git a/lib/vconn.c b/lib/vconn.c
index b37656a75..e9e57d7fc 100644
--- a/lib/vconn.c
+++ b/lib/vconn.c
@@ -468,11 +468,11 @@ do_recv(struct vconn *vconn, struct ofpbuf **msgp)
             && oh->type != OFPT_VENDOR)
         {
             if (vconn->version < 0) {
-                VLOG_ERR_RL(&rl, "%s: received OpenFlow version %02"PRIx8" "
+                VLOG_ERR_RL(&rl, "%s: received OpenFlow message type %"PRIu8" "
                             "before version negotiation complete",
-                            vconn->name, oh->version);
+                            vconn->name, oh->type);
             } else {
-                VLOG_ERR_RL(&rl, "%s: received OpenFlow version %02"PRIx8" "
+                VLOG_ERR_RL(&rl, "%s: received OpenFlow version 0x%02"PRIx8" "
                             "!= expected %02x",
                             vconn->name, oh->version, vconn->version);
             }