util: minor comment/formatting changes to virNetDevTapCreate()

The comment about auto-generating names was obsoleted by recent
changes, and there was an unnecessary set of braces around a single
line conditional body.

Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
Laine Stump 2020-12-15 15:14:45 -05:00
parent b36569ec77
commit 4974872abc

View File

@ -174,15 +174,14 @@ int virNetDevTapCreate(char **ifname,
int ret = -1;
int fd = -1;
/* if ifname is "vnet%d", then auto-generate a name for the new
/* if ifname is empty, then auto-generate a name for the new
* device (the kernel could do this for us, but has a bad habit of
* immediately re-using names that have just been released, which
* can lead to race conditions).
* if ifname is just a user-provided name, virNetDevGenerateName
* leaves it unchanged. */
if (virNetDevGenerateName(ifname, VIR_NET_DEV_GEN_NAME_VNET) < 0) {
* can lead to race conditions). if ifname is just a
* user-provided name, virNetDevGenerateName leaves it
* unchanged. */
if (virNetDevGenerateName(ifname, VIR_NET_DEV_GEN_NAME_VNET) < 0)
return -1;
}
if (!tunpath)
tunpath = "/dev/net/tun";