diff options
author | Doug Goldstein <cardoe@cardoe.com> | 2012-09-09 17:07:27 -0500 |
---|---|---|
committer | Eric Blake <eblake@redhat.com> | 2012-09-19 14:19:45 -0600 |
commit | 6a1b0e37afc882085aac927c467ab78760d3712b (patch) | |
tree | e8729c8caa327bf463725db7ccbafae8f59e093f | |
parent | network: fix incorrect VIR_NETWORK_UPDATE_COMMAND_* values (diff) | |
download | libvirt-6a1b0e37afc882085aac927c467ab78760d3712b.tar.gz libvirt-6a1b0e37afc882085aac927c467ab78760d3712b.tar.bz2 libvirt-6a1b0e37afc882085aac927c467ab78760d3712b.zip |
virsh: Move daemon to misc since its not a network
Move the 'Daemon' entry to the Miscellaneous section since its not a
networking driver or component.
-rw-r--r-- | tools/virsh.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/virsh.c b/tools/virsh.c index 5447376be..1c55cbe44 100644 --- a/tools/virsh.c +++ b/tools/virsh.c @@ -2698,9 +2698,6 @@ vshShowVersion(vshControl *ctl ATTRIBUTE_UNUSED) #ifdef WITH_REMOTE vshPrint(ctl, " Remote"); #endif -#ifdef WITH_LIBVIRTD - vshPrint(ctl, " Daemon"); -#endif #ifdef WITH_NETWORK vshPrint(ctl, " Network"); #endif @@ -2752,6 +2749,9 @@ vshShowVersion(vshControl *ctl ATTRIBUTE_UNUSED) vshPrint(ctl, "\n"); vshPrint(ctl, "%s", _(" Miscellaneous:")); +#ifdef WITH_LIBVIRTD + vshPrint(ctl, " Daemon"); +#endif #ifdef WITH_NODE_DEVICES vshPrint(ctl, " Nodedev"); #endif |