aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/unix
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2017-12-04 15:14:52 +0100
committerDamjan Marion <dmarion.lists@gmail.com>2017-12-04 17:07:13 +0000
commitffffb15fb5d6dcd5f0afd69652aa33a4e9894152 (patch)
treeadb5990871cf189534dd4abdd465686d712d91aa /src/vnet/unix
parent7223959c0ad924872b8a7b4f22643bbaf137d0a7 (diff)
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 <damarion@cisco.com>
Diffstat (limited to 'src/vnet/unix')
-rw-r--r--src/vnet/unix/tapcli.c2
1 files changed, 1 insertions, 1 deletions
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;
}