From a4bcefbcff01c9cdc257127df376929cd80304b1 Mon Sep 17 00:00:00 2001 From: Osier Yang Date: Fri, 27 Jul 2012 17:39:53 +0800 Subject: [PATCH] maint: Use consistent copyright. This is a follow up patch of commit f9ce7dad6, it modifies all the files which declare the copyright like "See COPYING.LIB for the License of this software" to use the detailed/consistent one. And deserts the outdated comments like: * libvirt-qemu.h: * Summary: qemu specific interfaces * Description: Provides the interfaces of the libvirt library to handle * qemu specific methods * * Copy: Copyright (C) 2010, 2012 Red Hat, Inc. Uses the more compact style like: * libvirt-qemu.h: Interfaces specific for QEMU/KVM driver * * Copyright (C) 2010, 2012 Red Hat, Inc. --- include/libvirt/libvirt-qemu.h | 21 +++++++++++++++------ include/libvirt/libvirt.h.in | 21 +++++++++++++++------ include/libvirt/virterror.h | 21 +++++++++++++++------ src/libvirt.c | 14 +++++++++++++- src/security/virt-aa-helper.c | 14 +++++++++++++- src/util/buf.c | 14 +++++++++++++- src/util/buf.h | 14 +++++++++++++- src/util/cgroup.c | 14 +++++++++++++- src/util/cgroup.h | 14 +++++++++++++- src/util/conf.c | 14 +++++++++++++- src/util/conf.h | 14 +++++++++++++- src/util/stats_linux.c | 14 +++++++++++++- src/util/stats_linux.h | 14 +++++++++++++- src/util/virterror.c | 16 ++++++++++++++-- src/util/viruri.c | 14 +++++++++++++- src/util/viruri.h | 14 +++++++++++++- src/util/xml.c | 14 +++++++++++++- src/xen/block_stats.c | 14 +++++++++++++- src/xen/block_stats.h | 14 +++++++++++++- src/xen/xen_driver.c | 14 +++++++++++++- src/xen/xen_driver.h | 14 +++++++++++++- src/xen/xen_hypervisor.c | 14 +++++++++++++- src/xen/xen_hypervisor.h | 14 +++++++++++++- src/xen/xs_internal.c | 14 +++++++++++++- src/xen/xs_internal.h | 14 +++++++++++++- tests/testutils.c | 14 +++++++++++++- tests/testutils.h | 14 +++++++++++++- tools/virsh-edit.c | 14 +++++++++++++- tools/virsh.c | 14 +++++++++++++- 29 files changed, 384 insertions(+), 45 deletions(-) diff --git a/include/libvirt/libvirt-qemu.h b/include/libvirt/libvirt-qemu.h index ba75ae33bf..6f4aedc555 100644 --- a/include/libvirt/libvirt-qemu.h +++ b/include/libvirt/libvirt-qemu.h @@ -1,12 +1,21 @@ /* -*- c -*- - * libvirt-qemu.h: - * Summary: qemu specific interfaces - * Description: Provides the interfaces of the libvirt library to handle - * qemu specific methods + * libvirt-qemu.h: Interfaces specific for QEMU/KVM driver * - * Copy: Copyright (C) 2010, 2012 Red Hat, Inc. + * Copyright (C) 2010, 2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Author: Chris Lalancette */ diff --git a/include/libvirt/libvirt.h.in b/include/libvirt/libvirt.h.in index fcef461a1b..fc7fa85f48 100644 --- a/include/libvirt/libvirt.h.in +++ b/include/libvirt/libvirt.h.in @@ -1,12 +1,21 @@ /* -*- c -*- - * libvirt.h: - * Summary: core interfaces for the libvirt library - * Description: Provides the interfaces of the libvirt library to handle - * virtualized domains + * libvirt.h: Core interfaces for the libvirt library * - * Copy: Copyright (C) 2005-2006, 2010-2012 Red Hat, Inc. + * Copyright (C) 2005-2006, 2010-2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Author: Daniel Veillard */ diff --git a/include/libvirt/virterror.h b/include/libvirt/virterror.h index 0e0bc9cd36..b3f80abb63 100644 --- a/include/libvirt/virterror.h +++ b/include/libvirt/virterror.h @@ -1,12 +1,21 @@ /* - * virterror.h: - * Summary: error handling interfaces for the libvirt library - * Description: Provides the interfaces of the libvirt library to handle - * errors raised while using the library. + * virterror.h: Error handling interfaces for the libvirt library * - * Copy: Copyright (C) 2006, 2010-2012 Red Hat, Inc. + * Copyright (C) 2006, 2010-2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Author: Daniel Veillard */ diff --git a/src/libvirt.c b/src/libvirt.c index 1ed9e328f2..93c10942d3 100644 --- a/src/libvirt.c +++ b/src/libvirt.c @@ -4,7 +4,19 @@ * * Copyright (C) 2005-2006, 2008-2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Daniel Veillard */ diff --git a/src/security/virt-aa-helper.c b/src/security/virt-aa-helper.c index 056362cfc5..5352a4a6e8 100644 --- a/src/security/virt-aa-helper.c +++ b/src/security/virt-aa-helper.c @@ -5,7 +5,19 @@ * Copyright (C) 2010-2012 Red Hat, Inc. * Copyright (C) 2009-2011 Canonical Ltd. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Author: * Jamie Strandboge diff --git a/src/util/buf.c b/src/util/buf.c index 6c7c50103c..a7e5bd4eb3 100644 --- a/src/util/buf.c +++ b/src/util/buf.c @@ -3,7 +3,19 @@ * * Copyright (C) 2005-2008, 2010-2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Daniel Veillard */ diff --git a/src/util/buf.h b/src/util/buf.h index 2750b17c1d..c58f1d796f 100644 --- a/src/util/buf.h +++ b/src/util/buf.h @@ -3,7 +3,19 @@ * * Copyright (C) 2005-2008, 2011, 2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Daniel Veillard */ diff --git a/src/util/cgroup.c b/src/util/cgroup.c index 5b3288151d..6c29c874bf 100644 --- a/src/util/cgroup.c +++ b/src/util/cgroup.c @@ -4,7 +4,19 @@ * Copyright (C) 2010-2012 Red Hat, Inc. * Copyright IBM Corp. 2008 * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Authors: * Dan Smith diff --git a/src/util/cgroup.h b/src/util/cgroup.h index 05325ae985..265f7c96c7 100644 --- a/src/util/cgroup.h +++ b/src/util/cgroup.h @@ -4,7 +4,19 @@ * Copyright (C) 2011-2012 Red Hat, Inc. * Copyright IBM Corp. 2008 * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Authors: * Dan Smith diff --git a/src/util/conf.c b/src/util/conf.c index b9392f758e..8c1a963746 100644 --- a/src/util/conf.c +++ b/src/util/conf.c @@ -3,7 +3,19 @@ * * Copyright (C) 2006-2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Daniel Veillard */ diff --git a/src/util/conf.h b/src/util/conf.h index e7d470dbaf..6af2377a77 100644 --- a/src/util/conf.h +++ b/src/util/conf.h @@ -3,7 +3,19 @@ * * Copyright (C) 2006, 2007 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Daniel Veillard */ diff --git a/src/util/stats_linux.c b/src/util/stats_linux.c index a74ed6a65a..2a1c6ee1e6 100644 --- a/src/util/stats_linux.c +++ b/src/util/stats_linux.c @@ -3,7 +3,19 @@ * * Copyright (C) 2007-2010 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Richard W.M. Jones */ diff --git a/src/util/stats_linux.h b/src/util/stats_linux.h index 0aff8324a7..73aeb5fecd 100644 --- a/src/util/stats_linux.h +++ b/src/util/stats_linux.h @@ -3,7 +3,19 @@ * * Copyright (C) 2007 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Richard W.M. Jones */ diff --git a/src/util/virterror.c b/src/util/virterror.c index b5c6853a60..74adeed3a2 100644 --- a/src/util/virterror.c +++ b/src/util/virterror.c @@ -1,9 +1,21 @@ /* * virterror.c: implements error handling and reporting code for libvirt * - * Copy: Copyright (C) 2006, 2008-2012 Red Hat, Inc. + * Copyright (C) 2006, 2008-2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Author: Daniel Veillard */ diff --git a/src/util/viruri.c b/src/util/viruri.c index 791a412dcb..1cbfbc12ee 100644 --- a/src/util/viruri.c +++ b/src/util/viruri.c @@ -3,7 +3,19 @@ * * Copyright (C) 2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . */ #include diff --git a/src/util/viruri.h b/src/util/viruri.h index 79a5668df4..571bf3c4a2 100644 --- a/src/util/viruri.h +++ b/src/util/viruri.h @@ -3,7 +3,19 @@ * * Copyright (C) 2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . */ #ifndef __VIR_URI_H__ diff --git a/src/util/xml.c b/src/util/xml.c index 4c88a06660..b093d5f1ec 100644 --- a/src/util/xml.c +++ b/src/util/xml.c @@ -3,7 +3,19 @@ * * Copyright (C) 2005, 2007-2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Daniel Veillard */ diff --git a/src/xen/block_stats.c b/src/xen/block_stats.c index 3d77720ed9..b42666eac8 100644 --- a/src/xen/block_stats.c +++ b/src/xen/block_stats.c @@ -3,7 +3,19 @@ * * Copyright (C) 2007-2009 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Richard W.M. Jones */ diff --git a/src/xen/block_stats.h b/src/xen/block_stats.h index c94f6458fd..5eecc6ecd1 100644 --- a/src/xen/block_stats.h +++ b/src/xen/block_stats.h @@ -3,7 +3,19 @@ * * Copyright (C) 2007 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Richard W.M. Jones */ diff --git a/src/xen/xen_driver.c b/src/xen/xen_driver.c index f01ce164eb..d33737e0a8 100644 --- a/src/xen/xen_driver.c +++ b/src/xen/xen_driver.c @@ -3,7 +3,19 @@ * * Copyright (C) 2007-2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Richard W.M. Jones */ diff --git a/src/xen/xen_driver.h b/src/xen/xen_driver.h index 3cefea336a..0b3138a4c6 100644 --- a/src/xen/xen_driver.h +++ b/src/xen/xen_driver.h @@ -3,7 +3,19 @@ * * Copyright (C) 2007, 2010-2011 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Richard W.M. Jones */ diff --git a/src/xen/xen_hypervisor.c b/src/xen/xen_hypervisor.c index 986621afb2..86e0514249 100644 --- a/src/xen/xen_hypervisor.c +++ b/src/xen/xen_hypervisor.c @@ -3,7 +3,19 @@ * * Copyright (C) 2005-2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Daniel Veillard */ diff --git a/src/xen/xen_hypervisor.h b/src/xen/xen_hypervisor.h index 55a99f15c3..61434dcd59 100644 --- a/src/xen/xen_hypervisor.h +++ b/src/xen/xen_hypervisor.h @@ -3,7 +3,19 @@ * * Copyright (C) 2005, 2010-2011 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Daniel Veillard */ diff --git a/src/xen/xs_internal.c b/src/xen/xs_internal.c index 8f52e8fc54..e56d1a4fc9 100644 --- a/src/xen/xs_internal.c +++ b/src/xen/xs_internal.c @@ -3,7 +3,19 @@ * * Copyright (C) 2006, 2009-2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Daniel Veillard */ diff --git a/src/xen/xs_internal.h b/src/xen/xs_internal.h index 1ada0f3a15..b9438eab2e 100644 --- a/src/xen/xs_internal.h +++ b/src/xen/xs_internal.h @@ -3,7 +3,19 @@ * * Copyright (C) 2006, 2010-2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Daniel Veillard */ diff --git a/tests/testutils.c b/tests/testutils.c index 8f2ca51067..171321f65e 100644 --- a/tests/testutils.c +++ b/tests/testutils.c @@ -3,7 +3,19 @@ * * Copyright (C) 2005-2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Karel Zak */ diff --git a/tests/testutils.h b/tests/testutils.h index f8c7567e65..f372c23359 100644 --- a/tests/testutils.h +++ b/tests/testutils.h @@ -3,7 +3,19 @@ * * Copyright (C) 2005, 2008-2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Karel Zak */ diff --git a/tools/virsh-edit.c b/tools/virsh-edit.c index 27140e22bd..4dea4b894c 100644 --- a/tools/virsh-edit.c +++ b/tools/virsh-edit.c @@ -3,7 +3,19 @@ * * Copyright (C) 2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software. + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Usage: * Define macros: diff --git a/tools/virsh.c b/tools/virsh.c index 953b75287f..4670ee6225 100644 --- a/tools/virsh.c +++ b/tools/virsh.c @@ -3,7 +3,19 @@ * * Copyright (C) 2005, 2007-2012 Red Hat, Inc. * - * See COPYING.LIB for the License of this software + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; If not, see + * . * * Daniel Veillard * Karel Zak