X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Funixctl.c;h=17bd6cb56981cf2748bcd973d2283744d887703e;hb=b2f17b151d15dd9869408c1faa025631003f50f6;hp=526c3fe356cec18076b461378735bb0c5950e808;hpb=a14bc59fb8f27db193d74662dc9c5cb8237177ef;p=openvswitch diff --git a/lib/unixctl.c b/lib/unixctl.c index 526c3fe3..17bd6cb5 100644 --- a/lib/unixctl.c +++ b/lib/unixctl.c @@ -82,7 +82,7 @@ unixctl_help(struct unixctl_conn *conn, const char *args UNUSED) struct shash_node *node; ds_put_cstr(&ds, "The available commands are:\n"); - HMAP_FOR_EACH (node, struct shash_node, node, &commands.map) { + SHASH_FOR_EACH (node, &commands) { ds_put_format(&ds, "\t%s\n", node->name); } unixctl_command_reply(conn, 214, ds_cstr(&ds));