util: netdevip: Include vircommand.h

Not including the header causes

  util/virnetdevip.c:520:5: error:
  unknown type name 'virCommandPtr'; did you mean 'virCondPtr'?
    virCommandPtr cmd = NULL;
    ^~~~~~~~~~~~~

and plenty more similar failures when compiling on FreeBSD.
This commit is contained in:
Andrea Bolognani 2016-06-27 10:33:00 +02:00
parent 60f1f1082a
commit 014dd11291
1 changed files with 1 additions and 0 deletions

View File

@ -31,6 +31,7 @@
#include "virlog.h"
#include "virstring.h"
#include "virutil.h"
#include "vircommand.h"
#if HAVE_GETIFADDRS
# include <ifaddrs.h>