ovs-ofctl: Fix error message in "parse-ofp10-actions" internal command.
authorBen Pfaff <blp@nicira.com>
Wed, 6 Aug 2014 21:07:55 +0000 (14:07 -0700)
committerBen Pfaff <blp@nicira.com>
Mon, 11 Aug 2014 19:44:34 +0000 (12:44 -0700)
Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: Jarno Rajahalme <jrajahalme@nicira.com>
utilities/ovs-ofctl.c

index 7b4a006..4dc547d 100644 (file)
@@ -2965,7 +2965,7 @@ ofctl_parse_ofp10_actions(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
         error = ofpacts_pull_openflow_actions(&of10_in, ofpbuf_size(&of10_in),
                                               OFP10_VERSION, &ofpacts);
         if (error) {
-            printf("bad OF1.1 actions: %s\n\n", ofperr_get_name(error));
+            printf("bad OF1.0 actions: %s\n\n", ofperr_get_name(error));
             ofpbuf_uninit(&ofpacts);
             ofpbuf_uninit(&of10_in);
             continue;