From 8afa2d1df052d72a33f4342cb03e60892c259281 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 26 Feb 2009 16:19:39 -0800 Subject: [PATCH] dpctl: Fix assertion failure when second argument given to "dpctl status". --- utilities/dpctl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/utilities/dpctl.c b/utilities/dpctl.c index 60341276..60c5f189 100644 --- a/utilities/dpctl.c +++ b/utilities/dpctl.c @@ -489,6 +489,7 @@ do_status(const struct settings *s UNUSED, int argc, char *argv[]) request->subtype = htonl(NXT_STATUS_REQUEST); if (argc > 2) { ofpbuf_put(b, argv[2], strlen(argv[2])); + update_openflow_length(b); } open_vconn(argv[1], &vconn); run(vconn_transact(vconn, b, &b), "talking to %s", argv[1]); -- 2.30.2