From: Damjan Marion Date: Mon, 4 Dec 2017 14:14:52 +0000 (+0100) Subject: tapcli: change interface name X-Git-Tag: v18.04-rc0~117 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F09%2F9709%2F3;p=vpp.git tapcli: change interface name As tapcli code is going to be deprecated and replaced with tap v2 code, change the interface naming so the new code can use form tap-X. Change-Id: I2684a880c037caee677927214752c00cf97f63f6 Signed-off-by: Damjan Marion --- diff --git a/src/vnet/unix/tapcli.c b/src/vnet/unix/tapcli.c index d80cca3df4f..3ad8338a200 100644 --- a/src/vnet/unix/tapcli.c +++ b/src/vnet/unix/tapcli.c @@ -604,7 +604,7 @@ static u8 * format_tapcli_interface_name (u8 * s, va_list * args) if (show_dev_instance != ~0) i = show_dev_instance; - s = format (s, "tap-%d", i); + s = format (s, "tapcli-%d", i); return s; }