dpctl: Remove nl: special case that no longer makes sense.
authorBen Pfaff <blp@nicira.com>
Wed, 11 Mar 2009 23:22:53 +0000 (16:22 -0700)
committerBen Pfaff <blp@nicira.com>
Wed, 11 Mar 2009 23:23:08 +0000 (16:23 -0700)
It looks like this was always broken anyway, since the "name" that was
computed was never used.

utilities/dpctl.c

index a01c04f51ddadcaa26620e43c6f38dc7d5364d69..053e8e0a11466efe97d736d62b64a5a2cb61a51b 100644 (file)
@@ -1243,16 +1243,7 @@ static void
 do_monitor(const struct settings *s UNUSED, int argc UNUSED, char *argv[])
 {
     struct vconn *vconn;
-    const char *name;
 
-    /* If the user specified, e.g., "nl:0", append ":1" to it to ensure that
-     * the connection will subscribe to listen for asynchronous messages, such
-     * as packet-in messages. */
-    if (!strncmp(argv[1], "nl:", 3) && strrchr(argv[1], ':') == &argv[1][2]) {
-        name = xasprintf("%s:1", argv[1]);
-    } else {
-        name = argv[1];
-    }
     open_vconn(argv[1], &vconn);
     for (;;) {
         struct ofpbuf *b;