]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Change file names in comments to match the files they are in
authorJán Tomko <jtomko@redhat.com>
Fri, 7 Mar 2014 13:38:51 +0000 (14:38 +0100)
committerJán Tomko <jtomko@redhat.com>
Mon, 10 Mar 2014 13:26:04 +0000 (14:26 +0100)
Some of these are leftovers from renaming the files, others
are just typos.

Also introduce an ugly awk script to enforce this.

52 files changed:
cfg.mk
daemon/libvirtd-config.c
daemon/libvirtd-config.h
src/bhyve/bhyve_command.c
src/bhyve/bhyve_command.h
src/conf/domain_audit.h
src/datatypes.c
src/hyperv/hyperv_wmi.c
src/interface/interface_backend_netcf.c
src/locking/domain_lock.h
src/locking/lock_daemon_config.c
src/lxc/lxc_hostdev.c
src/lxc/lxc_hostdev.h
src/network/bridge_driver.h
src/network/bridge_driver_platform.h
src/node_device/node_device_driver.c
src/node_device/node_device_driver.h
src/nodeinfo.h
src/openvz/openvz_conf.h
src/openvz/openvz_util.c
src/openvz/openvz_util.h
src/parallels/parallels_driver.h
src/parallels/parallels_network.c
src/qemu/qemu_agent.c
src/qemu/qemu_domain.c
src/qemu/qemu_driver.h
src/qemu/qemu_hotplug.c
src/remote/remote_driver.h
src/rpc/virnetservermdns.h
src/storage/storage_backend_mpath.h
src/storage/storage_backend_sheepdog.h
src/test/test_driver.c
src/test/test_driver.h
src/uml/uml_conf.h
src/util/viratomic.c
src/util/virbitmap.c
src/util/virebtables.h
src/util/virerror.h
src/util/vireventpoll.h
src/util/viruuid.c
src/util/virxml.h
src/xen/xen_driver.h
src/xen/xen_hypervisor.c
src/xen/xen_hypervisor.h
src/xen/xen_inotify.c
src/xen/xen_inotify.h
src/xen/xm_internal.c
src/xenapi/xenapi_driver.h
tests/testutils.h
tools/virsh-interface.h
tools/virsh-network.h
tools/virt-host-validate.c

diff --git a/cfg.mk b/cfg.mk
index 2a8957a80b7021dcd64d391f2b9697380d94efbc..9ad8cf75292af310e30019615b536424a7d95a96 100644 (file)
--- a/cfg.mk
+++ b/cfg.mk
@@ -863,6 +863,30 @@ sc_prohibit_atoi:
        halt='Use virStrToLong* instead of atoi, atol, atof, atoq, atoll' \
          $(_sc_search_regexp)
 
+sc_prohibit_wrong_filename_in_comment:
+       @fail=0;                                                       \
+       awk 'BEGIN {                                                   \
+         fail=0;                                                      \
+       } FNR < 3 {                                                    \
+         n=match($$0, /[[:space:]][^[:space:]]*[.][ch][[:space:]:]/); \
+         if (n > 0) {                                                 \
+           A=substr($$0, RSTART+1, RLENGTH-2);                        \
+           n=split(FILENAME, arr, "/");                               \
+           if (A != arr[n]) {                                         \
+             print "in " FILENAME ": " A " mentioned in comments ";   \
+             fail=1;                                                  \
+           }                                                          \
+         }                                                            \
+       } END {                                                        \
+         if (fail == 1) {                                             \
+           exit 1;                                                    \
+         }                                                            \
+       }' $$($(VC_LIST_EXCEPT) | grep '\.[ch]$$') || fail=1;          \
+       if test $$fail -eq 1; then                                     \
+         { echo '$(ME): The file name in comments must match the '    \
+           'actual file name' 1>&2; exit 1; }                         \
+       fi;
+
 
 # We don't use this feature of maint.mk.
 prev_version_file = /dev/null
index c816fda64cf3db9dbcc9ad6f2d28b515a88205e7..856a03872672a2e58d0705562f4fa1dd81c67f2b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * libvirtd.c: daemon start of day, guest process & i/o management
+ * libvirtd-config.c: daemon start of day, guest process & i/o management
  *
  * Copyright (C) 2006-2012 Red Hat, Inc.
  * Copyright (C) 2006 Daniel P. Berrange
index a24d5d2737f0d9786711456dadd6c51db62679d8..0829273db412b20362bef9f43bc6b89bb165ea64 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * libvirtd.c: daemon start of day, guest process & i/o management
+ * libvirtd-config.h: daemon start of day, guest process & i/o management
  *
  * Copyright (C) 2006-2012 Red Hat, Inc.
  * Copyright (C) 2006 Daniel P. Berrange
index 1fcc0f2f15dfff8896a7509463aec1644b7ac64a..a19daac1fe67776f6cadcc0bed9b51a35106fd01 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * bhyve_process.c: bhyve command generation
+ * bhyve_command.c: bhyve command generation
  *
  * Copyright (C) 2014 Roman Bogorodskiy
  *
index 8326971ecc36da62ea9f81dfb5b339a6ef80daa1..66d934dfe72d7f2c1aac45a4768e76cc2bdc10d9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * bhyve_process.c: bhyve command generation
+ * bhyve_command.h: bhyve command generation
  *
  * Copyright (C) 2014 Roman Bogorodskiy
  *
index 94862168017c2ab8c8ccbb1b2e4f69ee104e5e80..70b09e5aa9d725ddbd024f2d8b087015efaa27c1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * domain_audit.c: Domain audit management
+ * domain_audit.h: Domain audit management
  *
  * Copyright (C) 2006-2011 Red Hat, Inc.
  * Copyright (C) 2006 Daniel P. Berrange
index 33d941db4bf73c4d82225a68c030b2110a5321dd..20752cd45a8348ffc83097783904fee57f83327b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * datatypes.h: management of structs for public data types
+ * datatypes.c: management of structs for public data types
  *
  * Copyright (C) 2006-2014 Red Hat, Inc.
  *
index 39eed0c936820eb41d48461950bbf046272c1b84..a603badcf3d06f778f0c98de826020b88e8b9e95 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * hyperv_wmi.h: general WMI over WSMAN related functions and structures for
+ * hyperv_wmi.c: general WMI over WSMAN related functions and structures for
  *               managing Microsoft Hyper-V hosts
  *
  * Copyright (C) 2011 Matthias Bolte <matthias.bolte@googlemail.com>
index c525ca9c0b2a454a97a074bcc75684b89ced2012..b4c1fe924097cc25008a17976a91e38d45d92d78 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * interface_driver.c: backend driver methods to handle physical
- *                     interface configuration using the netcf library.
+ * interface_backend_netcf.c: backend driver methods to handle physical
+ *                            interface configuration using the netcf library.
  *
  * Copyright (C) 2006-2013 Red Hat, Inc.
  *
index eefe6cd52f7cd72852f59489e32142b4344970bc..a9b19c865d30e7864de7930fae17c412dfc61718 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * domain_lock.c: Locking for domain lifecycle operations
+ * domain_lock.h: Locking for domain lifecycle operations
  *
  * Copyright (C) 2010-2011 Red Hat, Inc.
  *
index 8e632f58bd86b25bfe9d31eccde68b04d1c88707..68cd9e9b44965443975d2df02cf91251320f3ebb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * lock_daemon_config.h: virtlockd config file handling
+ * lock_daemon_config.c: virtlockd config file handling
  *
  * Copyright (C) 2006-2012 Red Hat, Inc.
  * Copyright (C) 2006 Daniel P. Berrange
index b7248df94a57bb03c83477b364de5246a56d154d..c3ecc481c62e69878c3d57655f93a4ff5d20ebe9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * virLXC_hostdev.c: VIRLXC hostdev management
+ * lxc_hostdev.c: VIRLXC hostdev management
  *
  * Copyright (C) 2006-2007, 2009-2012 Red Hat, Inc.
  * Copyright (C) 2006 Daniel P. Berrange
index 41bb17827633379ad7a5e8504d456f9789041312..cf89a9907acc8245f1101166c23752bfb5c03681 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * virLXC_hostdev.h: VIRLXC hostdev management
+ * lxc_hostdev.h: VIRLXC hostdev management
  *
  * Copyright (C) 2006-2007, 2009-2010 Red Hat, Inc.
  * Copyright (C) 2006 Daniel P. Berrange
index 1c2a4a7e806fc3d4a8a63e886f935bd117ed1818..decc08f77da00886d40c79b8a81382de884acee0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * network_driver.h: core driver methods for managing networks
+ * bridge_driver.h: core driver methods for managing networks
  *
  * Copyright (C) 2006-2013 Red Hat, Inc.
  * Copyright (C) 2006 Daniel P. Berrange
index 82d96f6595b012ea5a548d1299e44bf0c8126558..22f3aae6165cd8b6d01aae146903d807d1f5c8f7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * bridge_driver.h: platform specific routines for bridge driver
+ * bridge_driver_platform.h: platform specific routines for bridge driver
  *
  * Copyright (C) 2006-2013 Red Hat, Inc.
  * Copyright (C) 2006 Daniel P. Berrange
index d5a92cd836a77f69c5d1f9c597ba3cb45659c776..55b3eb3e968ee9faf5f6532bb05cab603ca81aad 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * node_device.c: node device enumeration
+ * node_device_driver.c: node device enumeration
  *
  * Copyright (C) 2010-2013 Red Hat, Inc.
  * Copyright (C) 2008 Virtual Iron Software, Inc.
index 0f62c83c629b4dcd87dc178bf685c936973494ef..e238ff815976157cbb06735e3193b3feb556812a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * node_device.h: node device enumeration
+ * node_device_driver.h: node device enumeration
  *
  * Copyright (C) 2008 Virtual Iron Software, Inc.
  * Copyright (C) 2008 David F. Lively
index 413fddd0d40e0795a3ccfb091ace291deafc4907..c81fcbb0f1ac91fbc1ffb9c6e5f1a8a42fa04cf6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * nodeinfo.c: Helper routines for OS specific node information
+ * nodeinfo.h: Helper routines for OS specific node information
  *
  * Copyright (C) 2006-2008, 2011-2012 Red Hat, Inc.
  * Copyright (C) 2006 Daniel P. Berrange
index 47b512345805c30052b82c6f9b74eed09f2b836b..a7de7d2f27413d65c461e845e52c29a94be35237 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * openvz_config.h: config information for OpenVZ VPSs
+ * openvz_conf.h: config information for OpenVZ VPSs
  *
  * Copyright (C) 2010 Red Hat, Inc.
  * Copyright (C) 2006, 2007 Binary Karma.
index 8920d14f9b907f9dcda5a58f8afeba5e25b5f1ba..31137515ec1d2a2ccedca2b7983bbebfa68ecba0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * openvz_driver.c: core driver methods for managing OpenVZ VEs
+ * openvz_util.c: core driver methods for managing OpenVZ VEs
  *
  * Copyright (C) 2013 Red Hat, Inc.
  * Copyright (C) 2012 Guido Günther
index 680e50720fd26f8ef63212db5498c9bd96d6946a..0c8d55ae291b69bb3d0e687262511d2c5df0b065 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * openvz_driver.h: common util functions for managing openvz VPEs
+ * openvz_util.h: common util functions for managing openvz VPEs
  *
  * Copyright (C) 2012 Guido Günther
  *
index a503abe539abdd78ae9cbf2dc257a58453a9ac13..babe5c02f0c9dee404c4b1566581f1e2724ca340 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * parallels_driver.c: core driver functions for managing
+ * parallels_driver.h: core driver functions for managing
  * Parallels Cloud Server hosts
  *
  * Copyright (C) 2012 Parallels, Inc.
index 63daf53dc33d9c7757ee5ade72444595a103eaf0..432f0cce06d7d355af0a9ddb4554d8ffc1cbd8e8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * parallels_storage.c: core privconn functions for managing
+ * parallels_network.c: core privconn functions for managing
  * Parallels Cloud Server hosts
  *
  * Copyright (C) 2013 Red Hat, Inc.
index 4a3820cef5df6f76a082ed396e34ef55aa71cd2d..553bff919a095dd491baab3b1a9b12322ba6939e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * qemu_agent.h: interaction with QEMU guest agent
+ * qemu_agent.c: interaction with QEMU guest agent
  *
  * Copyright (C) 2006-2013 Red Hat, Inc.
  * Copyright (C) 2006 Daniel P. Berrange
index bad63c523887210866842a3439e9ba24568a8f0c..c321eda32f10402391f8ba93dabb408a6d016f63 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * qemu_domain.h: QEMU domain private state
+ * qemu_domain.c: QEMU domain private state
  *
  * Copyright (C) 2006-2013 Red Hat, Inc.
  * Copyright (C) 2006 Daniel P. Berrange
index 84f74c4241279421d639b5dd60acca4b957afbfa..df7533a8a26697e9a5cd831d5645f4ec50b9d703 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * driver.h: core driver methods for managing qemu guests
+ * qemu_driver.h: core driver methods for managing qemu guests
  *
  * Copyright (C) 2006, 2007 Red Hat, Inc.
  * Copyright (C) 2006 Daniel P. Berrange
index 6703c92edddfacfb08ee12d46a6bb7ad003c8c7c..dd72a794e3af7fd8096968dd7a58404d6c65dd21 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * qemu_hotplug.h: QEMU device hotplug management
+ * qemu_hotplug.c: QEMU device hotplug management
  *
  * Copyright (C) 2006-2014 Red Hat, Inc.
  * Copyright (C) 2006 Daniel P. Berrange
index 912f0f8b514246397ca7f5a0f5aa9f8c528629bb..4033a3cd2ca869fae5d35988e33a198b20d14edc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * remote_internal.h: driver to provide access to libvirtd running
+ * remote_driver.h: driver to provide access to libvirtd running
  *   on a remote machine
  *
  * Copyright (C) 2006-2007, 2010 Red Hat, Inc.
index a1c19c160383b6df32a1ebb3c8f6eed291f47e4b..e91b264c1e3dccf915eded495d5da0d5a1c9f758 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * virnetservermdns.c: advertise server sockets
+ * virnetservermdns.h: advertise server sockets
  *
  * Copyright (C) 2011 Red Hat, Inc.
  * Copyright (C) 2007 Daniel P. Berrange
index d7f20f381303deb41dcbe45220962e26a98213fb..b66664576fb96d093f1c01e321e9e26491e965b6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * storage_backend_scsi.h: storage backend for SCSI handling
+ * storage_backend_mpath.h: storage backend for multipath handling
  *
  * Copyright (C) 2009-2009 Red Hat, Inc.
  * Copyright (C) 2009-2008 Dave Allan
index bc114ffe5dee00bb50bef9fdef614fa9b0237069..b0d8440b3ab631f6759ff468fbd13d7a89a5b57b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * storage_backend_sheepog.h: storage backend for Sheepdog handling
+ * storage_backend_sheepdog.h: storage backend for Sheepdog handling
  *
  * Copyright (C) 2012 Wido den Hollander
  * Copyright (C) 2012 Frank Spijkerman
index 986f2159b4c7a6bf33ce3c533dff55dbd698ff72..181a15a40435fb2d76ab73242111a1d663bc489b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * test.c: A "mock" hypervisor for use by application unit tests
+ * test_driver.c: A "mock" hypervisor for use by application unit tests
  *
  * Copyright (C) 2006-2014 Red Hat, Inc.
  * Copyright (C) 2006 Daniel P. Berrange
index b9bf56606273e394b6c034cc102f65cc28d231fa..df74433c3633b8cb32107c048d7a315a04a088d5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * test.h: A "mock" hypervisor for use by application unit tests
+ * test_driver.h: A "mock" hypervisor for use by application unit tests
  *
  * Copyright (C) 2006-2006 Red Hat, Inc.
  * Copyright (C) 2006  Daniel P. Berrange
index a914be0ae08ed1d69a1e5840b12d504ac848fd55..05e19ff27b7a7ee5750b612ac9110227bb18fbb0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * config.h: VM configuration management
+ * uml_conf.h: VM configuration management
  *
  * Copyright (C) 2006, 2007, 2010 Red Hat, Inc.
  * Copyright (C) 2006 Daniel P. Berrange
index 160a20b073e755464267c679242f7b4fd7efdeda..278a749b6e66d3833615ecc0d73dfd0bde443f33 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * viratomic.h: atomic integer operations
+ * viratomic.c: atomic integer operations
  *
  * Copyright (C) 2012 Red Hat, Inc.
  *
index 870c8fe8142407ed5d2cc2b9fa2d70cfda9385e2..775262d37e192c28033e34c3c4808d6afcfc3386 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * virbitmap.h: Simple bitmap operations
+ * virbitmap.c: Simple bitmap operations
  *
  * Copyright (C) 2010-2013 Red Hat, Inc.
  * Copyright (C) 2010 Novell, Inc.
index c0d443d2377eedcd7cc39d3d758a64475727b439..2b6f1dde4bb743b5b360df2dc86d70b4d77028a6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * virebtables.c: Helper APIs for managing ebtables
+ * virebtables.h: Helper APIs for managing ebtables
  *
  * Copyright (C) 2007-2008, 2013 Red Hat, Inc.
  * Copyright (C) 2009 IBM Corp.
index 5ae4eb5853b45da1ce012c9702a51ddd90311735..2de04f474fb7680cefeb84794b71967cafd3498e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * virerror.c: error handling and reporting code for libvirt
+ * virerror.h: error handling and reporting code for libvirt
  *
  * Copyright (C) 2006-2014 Red Hat, Inc.
  *
index c46ab807e0e7965a796eecf8dcdb6b617104bfce..8844c9cd9f0510724bb4245158558fff940ce431 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * vireventpool.h: Poll based event loop for monitoring file handles
+ * vireventpoll.h: Poll based event loop for monitoring file handles
  *
  * Copyright (C) 2007 Daniel P. Berrange
  * Copyright (C) 2007 Red Hat, Inc.
index c5fa9a8cd2726f68e800e6b4adc918fe52fe975e..48f5e2e44b52fbf97ebed2da78f00430734cbe25 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * viruuid.h: helper APIs for dealing with UUIDs
+ * viruuid.c: helper APIs for dealing with UUIDs
  *
  * Copyright (C) 2007-2013 Red Hat, Inc.
  *
index d967a2e1c69c3d0af1d3cb90407b8f18c477a712..781b3bf8f6f41422d0dd377aa74abc2f92b63596 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * virxml.c: helper APIs for dealing with XML documents
+ * virxml.h: helper APIs for dealing with XML documents
  *
  * Copyright (C) 2005, 2007-2012 Red Hat, Inc.
  *
index 54a1124dd988771f4398600f3f3217bb0ea6fb74..b5582a1e2f4a8b259332fdb70115192171c91000 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * xen_unified.c: Unified Xen driver.
+ * xen_driver.h: Unified Xen driver.
  *
  * Copyright (C) 2007, 2010-2011 Red Hat, Inc.
  *
index f9c7b4083f1d93d20e784fe6329a38bdac8deefe..d24db06588a1bf42eba3e127ed86e2eb04d6a1bf 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * xen_internal.c: direct access to Xen hypervisor level
+ * xen_hypervisor.c: direct access to Xen hypervisor level
  *
  * Copyright (C) 2005-2013 Red Hat, Inc.
  *
index 6aeab7975cc657741b06e3440ad5ab7b30957494..2990e51ed435d4465edbb84090f8dd5c7bf926cb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * xen_internal.h: internal API for direct access to Xen hypervisor level
+ * xen_hypervisor.h: internal API for direct access to Xen hypervisor level
  *
  * Copyright (C) 2005, 2010-2011 Red Hat, Inc.
  *
index a58509b2cfced8e268678b70831f9375559acf88..6190a9d6f71433288090b9c416632169a95b230c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * xen_inofify.c: Xen notification of xml file activity in the
+ * xen_inotify.c: Xen notification of xml file activity in the
  *                following dirs:
  *                /etc/xen
  *                /var/lib/xend/domains
index 6055c88b435cbaccb75c1c240471c990fbe5cb85..8a9370deabe4a8be16ea62687a48ad6ffc267824 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * xen_inofify.h: Xen notification of xml files
+ * xen_inotify.h: Xen notification of xml files
  *
  * Copyright (C) 2011 Red Hat, Inc.
  * Copyright (C) 2008 VirtualIron
index 8037b2e76a7ec03df7cfb9684a896ab038851c09..603b71af385480a64dd88450b9e724e67bb73687 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * xm_internal.h: helper routines for dealing with inactive domains
+ * xm_internal.c: helper routines for dealing with inactive domains
  *
  * Copyright (C) 2006-2007, 2009-2013 Red Hat, Inc.
  * Copyright (C) 2006 Daniel P. Berrange
index 30a8f1e215f49be92ff602027c54e53e3e11ec7e..0925731f8478c8cabbd11cd44e1f077397340764 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * xenapi_driver.h.c: Xen API driver header file to be included in libvirt.c.
+ * xenapi_driver.h: Xen API driver header file to be included in libvirt.c.
  * Copyright (C) 2009, 2010 Citrix Ltd.
  *
  * This library is free software; you can redistribute it and/or
index fa37246b4863509d4ab2e311b35a7317d27c10c7..e89492bf62ba72e73ff7ce5421548db598aa54fb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * utils.c: test utils
+ * testutils.h: test utils
  *
  * Copyright (C) 2005, 2008-2013 Red Hat, Inc.
  *
index 2544f7e98dfa19eb9737b0ab5621bda8cac225b5..6272aabf5a4d5161785807b3c3ff622a2d4320aa 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * virsh-interface.c: Commands to manage host interface
+ * virsh-interface.h: Commands to manage host interface
  *
  * Copyright (C) 2005, 2007-2012 Red Hat, Inc.
  *
index 7178fdea612dba46194a8b2299b1a794bfe89b26..3beeeb9efc0c3f7b3335e7bd812a952cf0c90662 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * virsh-network.c: Commands to manage network
+ * virsh-network.h: Commands to manage network
  *
  * Copyright (C) 2005, 2007-2012 Red Hat, Inc.
  *
index d3cf19cbaa71f3eaee91486fe94c4fb5ffb3511f..a8c2075fde96707d04c0cb368e37f434791ddd48 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * virt-host-check.c: Sanity check a hypervisor host
+ * virt-host-validate.c: Sanity check a hypervisor host
  *
  * Copyright (C) 2012 Red Hat, Inc.
  *