[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[XENVKBD PATCH 3/3] Scripted replacement of Copyright notices in source



From: Owen Smith <owen.smith@xxxxxxxxxx>

Due to a transfer of copyright ownership from Citrix to Cloud Software Group,
the copyright notices in all source files should be updated.

Using the powershell script below replace "Copyright (c) Citrix Systems, Inc."
with "Copyright (c) Xen Project." and "Copyright (c) Cloud Software Group, Inc."

Function Multiline-Replace {
    param(
        [string]$Filename,
        [string]$ToReplace,
        [array]$ReplaceWith
    )

    $content = Get-Content $Filename
    $replace = $false
    $output = ""
    $content | ForEach {
        $line = $_
        if ($line.Contains($ToReplace)) {
            $replace = $true
            $ReplaceWith | ForEach {
                $output += $line.Replace($ToReplace, $_) + "`n"
            }
        } else {
            $output += $line + "`n"
        }
    }
    if ($replace) {
        Write-Host "Replacing: " $Filename
        $output | Set-Content $Filename
    } else {
        Write-Host "Ignoring:  " $Filename
    }
}

Function Replace-Filestrings {
    param(
        [array]$FilleTypes,
        [string]$ToReplace,
        [array]$Replacements,
        [array]$ExcludeList
    )

    $FileTypes | ForEach {
        Get-ChildItem $_ -Recurse | ForEach-Object {
            $filename = $_
            if (($ExcludeList | %{ $filename -Like $_ }) -Contains $True) {
                Write-Host "Excluding: " $filename
            } else {
                Multiline-Replace $_ $ToReplace $Replacements
            }
        }
    }
}

$ExcludeList = @("*include\xen\*", "*\obj\*")
$Replace = "Copyright (c) Citrix Systems Inc."

$Replacements = @("/* Copyright (c) Xen Project.", " * Copyright (c) Cloud 
Software Group, Inc.")
$FileTypes = @("*.c", "*.h", "*.rc")
Replace-Filestrings $FileTypes ('/* ' + $Replace) $Replacements $ExcludeList

$Replacements = @("; // Copyright (c) Xen Project.", "; // Copyright (c) Cloud 
Software Group, Inc.")
$FileTypes = @("*.mc")
Replace-Filestrings $FileTypes ('; // ' + $Replace) $Replacements $ExcludeList

$Replacements = @("; Copyright (c) Xen Project.", "; Copyright (c) Cloud 
Software Group, Inc.")
$FileTypes = @("*.inf", "*.def")
Replace-Filestrings $FileTypes ('; ' + $Replace) $Replacements $ExcludeList

$Replacements = @("Copyright (c) Xen Project.", "Copyright (c) Cloud Software 
Group, Inc.")
$FileTypes = @("LICENSE")
Replace-Filestrings $FileTypes $Replace $Replacements $ExcludeList

Signed-off-by: Owen Smith <owen.smith@xxxxxxxxxx>

Manually fixed whitespace at end of files.

Signed-off-by: Owen Smith <owen.smith@xxxxxxxxxx>
---
 LICENSE                       | 4 ++--
 include/cache_interface.h     | 3 ++-
 include/debug_interface.h     | 4 ++--
 include/evtchn_interface.h    | 4 ++--
 include/gnttab_interface.h    | 4 ++--
 include/hid_interface.h       | 3 ++-
 include/range_set_interface.h | 4 ++--
 include/revision.h            | 3 ++-
 include/store_interface.h     | 4 ++--
 include/suspend_interface.h   | 4 ++--
 include/unplug_interface.h    | 4 ++--
 include/xen-types.h           | 3 ++-
 include/xen-version.h         | 3 ++-
 include/xen-warnings.h        | 4 +++-
 include/xen.h                 | 3 ++-
 src/coinst/coinst.c           | 3 ++-
 src/coinst/xenvkbd_coinst.def | 3 ++-
 src/xenvkbd.inf               | 3 ++-
 src/xenvkbd/assert.h          | 3 ++-
 src/xenvkbd/bus.c             | 3 ++-
 src/xenvkbd/bus.h             | 4 ++--
 src/xenvkbd/dbg_print.h       | 3 ++-
 src/xenvkbd/driver.c          | 3 ++-
 src/xenvkbd/driver.h          | 3 ++-
 src/xenvkbd/fdo.c             | 3 ++-
 src/xenvkbd/fdo.h             | 3 ++-
 src/xenvkbd/frontend.c        | 3 ++-
 src/xenvkbd/frontend.h        | 3 ++-
 src/xenvkbd/hid.c             | 3 ++-
 src/xenvkbd/hid.h             | 4 ++--
 src/xenvkbd/mrsw.h            | 3 ++-
 src/xenvkbd/mutex.h           | 3 ++-
 src/xenvkbd/names.h           | 3 ++-
 src/xenvkbd/pdo.c             | 3 ++-
 src/xenvkbd/pdo.h             | 3 ++-
 src/xenvkbd/registry.c        | 3 ++-
 src/xenvkbd/registry.h        | 3 ++-
 src/xenvkbd/ring.c            | 3 ++-
 src/xenvkbd/ring.h            | 3 ++-
 src/xenvkbd/thread.c          | 4 ++--
 src/xenvkbd/thread.h          | 4 ++--
 src/xenvkbd/types.h           | 3 ++-
 src/xenvkbd/util.h            | 3 ++-
 src/xenvkbd/vkbd.h            | 3 ++-
 src/xenvkbd/xenvkbd.rc        | 3 ++-
 45 files changed, 91 insertions(+), 57 deletions(-)

diff --git a/LICENSE b/LICENSE
index 00be666..6604afc 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,5 @@
-Copyright (c) Citrix Systems Inc.
+Copyright (c) Xen Project.
+Copyright (c) Cloud Software Group, Inc.
 All rights reserved.
 
 Redistribution and use in source and binary forms, 
@@ -27,4 +28,3 @@ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
 SUCH DAMAGE.
-
diff --git a/include/cache_interface.h b/include/cache_interface.h
index ce50f4e..97fa315 100644
--- a/include/cache_interface.h
+++ b/include/cache_interface.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/include/debug_interface.h b/include/debug_interface.h
index cc71db0..79729c7 100644
--- a/include/debug_interface.h
+++ b/include/debug_interface.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -172,4 +173,3 @@ typedef struct _XENBUS_DEBUG_INTERFACE_V1 
XENBUS_DEBUG_INTERFACE, *PXENBUS_DEBUG
 #define XENBUS_DEBUG_INTERFACE_VERSION_MAX  1
 
 #endif  // _XENBUS_DEBUG_INTERFACE_H
-
diff --git a/include/evtchn_interface.h b/include/evtchn_interface.h
index 05c342e..ef67487 100644
--- a/include/evtchn_interface.h
+++ b/include/evtchn_interface.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -358,4 +359,3 @@ typedef struct _XENBUS_EVTCHN_INTERFACE_V9 
XENBUS_EVTCHN_INTERFACE, *PXENBUS_EVT
 #define XENBUS_EVTCHN_INTERFACE_VERSION_MAX 9
 
 #endif  // _XENBUS_EVTCHN_INTERFACE_H
-
diff --git a/include/gnttab_interface.h b/include/gnttab_interface.h
index e3ee888..4fc8f1f 100644
--- a/include/gnttab_interface.h
+++ b/include/gnttab_interface.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -300,4 +301,3 @@ typedef struct _XENBUS_GNTTAB_INTERFACE_V4 
XENBUS_GNTTAB_INTERFACE, *PXENBUS_GNT
 #define XENBUS_GNTTAB_INTERFACE_VERSION_MAX 4
 
 #endif  // _XENBUS_GNTTAB_INTERFACE_H
-
diff --git a/include/hid_interface.h b/include/hid_interface.h
index 93a8851..2e2d9e6 100644
--- a/include/hid_interface.h
+++ b/include/hid_interface.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/include/range_set_interface.h b/include/range_set_interface.h
index 5ab416d..c45a161 100644
--- a/include/range_set_interface.h
+++ b/include/range_set_interface.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -176,4 +177,3 @@ typedef struct _XENBUS_RANGE_SET_INTERFACE_V1 
XENBUS_RANGE_SET_INTERFACE, *PXENB
 #define XENBUS_RANGE_SET_INTERFACE_VERSION_MAX 1
 
 #endif  // _XENBUS_RANGE_SET_INTERFACE_H
-
diff --git a/include/revision.h b/include/revision.h
index b7f798c..ff043be 100644
--- a/include/revision.h
+++ b/include/revision.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms,
diff --git a/include/store_interface.h b/include/store_interface.h
index e1251dd..ca883bd 100644
--- a/include/store_interface.h
+++ b/include/store_interface.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -325,4 +326,3 @@ typedef struct _XENBUS_STORE_INTERFACE_V2 
XENBUS_STORE_INTERFACE, *PXENBUS_STORE
 #define XENBUS_STORE_INTERFACE_VERSION_MAX  2
 
 #endif  // _XENBUS_STORE_INTERFACE_H
-
diff --git a/include/suspend_interface.h b/include/suspend_interface.h
index cbe11ab..4176dc3 100644
--- a/include/suspend_interface.h
+++ b/include/suspend_interface.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -174,4 +175,3 @@ typedef struct _XENBUS_SUSPEND_INTERFACE_V1 
XENBUS_SUSPEND_INTERFACE, *PXENBUS_S
 #define XENBUS_SUSPEND_INTERFACE_VERSION_MAX    1
 
 #endif  // _XENBUS_SUSPEND_INTERFACE_H
-
diff --git a/include/unplug_interface.h b/include/unplug_interface.h
index 83b3dc9..e465e2e 100644
--- a/include/unplug_interface.h
+++ b/include/unplug_interface.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -113,4 +114,3 @@ typedef struct _XENBUS_UNPLUG_INTERFACE_V1 
XENBUS_UNPLUG_INTERFACE, *PXENBUS_UNP
 #define XENBUS_UNPLUG_INTERFACE_VERSION_MAX  1
 
 #endif  // _XENBUS_UNPLUG_INTERFACE_H
-
diff --git a/include/xen-types.h b/include/xen-types.h
index cfad732..2480526 100644
--- a/include/xen-types.h
+++ b/include/xen-types.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/include/xen-version.h b/include/xen-version.h
index 5da4233..d77a531 100644
--- a/include/xen-version.h
+++ b/include/xen-version.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/include/xen-warnings.h b/include/xen-warnings.h
index 5a095b4..a84f19f 100644
--- a/include/xen-warnings.h
+++ b/include/xen-warnings.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -40,3 +41,4 @@
 # pragma warning(disable:4200) // nonstandard extension used : zero-sized 
array in struct/union
 
 #endif  // _XEN_WARNINGS_H
+
diff --git a/include/xen.h b/include/xen.h
index 8ef8416..af514a2 100644
--- a/include/xen.h
+++ b/include/xen.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/coinst/coinst.c b/src/coinst/coinst.c
index da2c59e..49e5e5e 100644
--- a/src/coinst/coinst.c
+++ b/src/coinst/coinst.c
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/coinst/xenvkbd_coinst.def b/src/coinst/xenvkbd_coinst.def
index df65c7f..71d8f65 100644
--- a/src/coinst/xenvkbd_coinst.def
+++ b/src/coinst/xenvkbd_coinst.def
@@ -1,4 +1,5 @@
-; Copyright (c) Citrix Systems Inc.
+; Copyright (c) Xen Project.
+; Copyright (c) Cloud Software Group, Inc.
 ; All rights reserved.
 ; 
 ; Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd.inf b/src/xenvkbd.inf
index 3d67ef0..08d96d0 100644
--- a/src/xenvkbd.inf
+++ b/src/xenvkbd.inf
@@ -1,4 +1,5 @@
-; Copyright (c) Citrix Systems Inc.
+; Copyright (c) Xen Project.
+; Copyright (c) Cloud Software Group, Inc.
 ; All rights reserved.
 ;
 ; Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/assert.h b/src/xenvkbd/assert.h
index d28fcfe..fe76f98 100644
--- a/src/xenvkbd/assert.h
+++ b/src/xenvkbd/assert.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/bus.c b/src/xenvkbd/bus.c
index 89e0f24..8bd5b3c 100644
--- a/src/xenvkbd/bus.c
+++ b/src/xenvkbd/bus.c
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/bus.h b/src/xenvkbd/bus.h
index a48dff6..99a58a7 100644
--- a/src/xenvkbd/bus.h
+++ b/src/xenvkbd/bus.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -49,4 +50,3 @@ BusTeardown(
     );
 
 #endif  // _XENVKBD_BUS_H
-
diff --git a/src/xenvkbd/dbg_print.h b/src/xenvkbd/dbg_print.h
index 751655b..dc9f8b1 100644
--- a/src/xenvkbd/dbg_print.h
+++ b/src/xenvkbd/dbg_print.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/driver.c b/src/xenvkbd/driver.c
index 26f6cb2..818f9dc 100644
--- a/src/xenvkbd/driver.c
+++ b/src/xenvkbd/driver.c
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/driver.h b/src/xenvkbd/driver.h
index 3999905..7612a9a 100644
--- a/src/xenvkbd/driver.h
+++ b/src/xenvkbd/driver.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/fdo.c b/src/xenvkbd/fdo.c
index 61949cf..5c00ee1 100644
--- a/src/xenvkbd/fdo.c
+++ b/src/xenvkbd/fdo.c
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/fdo.h b/src/xenvkbd/fdo.h
index 677a9da..d9ec308 100644
--- a/src/xenvkbd/fdo.h
+++ b/src/xenvkbd/fdo.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/frontend.c b/src/xenvkbd/frontend.c
index 1d6d360..801ba35 100644
--- a/src/xenvkbd/frontend.c
+++ b/src/xenvkbd/frontend.c
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/frontend.h b/src/xenvkbd/frontend.h
index f4e338f..d67851b 100644
--- a/src/xenvkbd/frontend.h
+++ b/src/xenvkbd/frontend.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/hid.c b/src/xenvkbd/hid.c
index 8a90dd1..98cac43 100644
--- a/src/xenvkbd/hid.c
+++ b/src/xenvkbd/hid.c
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/hid.h b/src/xenvkbd/hid.h
index 116f749..1130415 100644
--- a/src/xenvkbd/hid.h
+++ b/src/xenvkbd/hid.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -70,4 +71,3 @@ HidSendReadReport(
     );
 
 #endif  // _XENVKBD_VKBD_H
-
diff --git a/src/xenvkbd/mrsw.h b/src/xenvkbd/mrsw.h
index ee480a3..929415e 100644
--- a/src/xenvkbd/mrsw.h
+++ b/src/xenvkbd/mrsw.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/mutex.h b/src/xenvkbd/mutex.h
index de98ab7..d60d9e1 100644
--- a/src/xenvkbd/mutex.h
+++ b/src/xenvkbd/mutex.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/names.h b/src/xenvkbd/names.h
index 58ef694..db3e58d 100644
--- a/src/xenvkbd/names.h
+++ b/src/xenvkbd/names.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/pdo.c b/src/xenvkbd/pdo.c
index d101910..3591e14 100644
--- a/src/xenvkbd/pdo.c
+++ b/src/xenvkbd/pdo.c
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/pdo.h b/src/xenvkbd/pdo.h
index 5e68a86..166bb27 100644
--- a/src/xenvkbd/pdo.h
+++ b/src/xenvkbd/pdo.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/registry.c b/src/xenvkbd/registry.c
index 9f5628c..8f84818 100644
--- a/src/xenvkbd/registry.c
+++ b/src/xenvkbd/registry.c
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/registry.h b/src/xenvkbd/registry.h
index 4ade040..904ff10 100644
--- a/src/xenvkbd/registry.h
+++ b/src/xenvkbd/registry.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/ring.c b/src/xenvkbd/ring.c
index acb0a5c..a91c31f 100644
--- a/src/xenvkbd/ring.c
+++ b/src/xenvkbd/ring.c
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/ring.h b/src/xenvkbd/ring.h
index bfc6c4f..cf0b139 100644
--- a/src/xenvkbd/ring.h
+++ b/src/xenvkbd/ring.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/thread.c b/src/xenvkbd/thread.c
index 65e14ae..5cb6b09 100644
--- a/src/xenvkbd/thread.c
+++ b/src/xenvkbd/thread.c
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -223,4 +224,3 @@ ThreadJoin(
 
     __ThreadFree(Thread);
 }
-
diff --git a/src/xenvkbd/thread.h b/src/xenvkbd/thread.h
index 5db568b..37796a2 100644
--- a/src/xenvkbd/thread.h
+++ b/src/xenvkbd/thread.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -72,4 +73,3 @@ ThreadJoin(
     );
 
 #endif  // _XENVKBD_THREAD_H
-
diff --git a/src/xenvkbd/types.h b/src/xenvkbd/types.h
index 9ec16dc..c798477 100644
--- a/src/xenvkbd/types.h
+++ b/src/xenvkbd/types.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/util.h b/src/xenvkbd/util.h
index 517b015..f393709 100644
--- a/src/xenvkbd/util.h
+++ b/src/xenvkbd/util.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms,
diff --git a/src/xenvkbd/vkbd.h b/src/xenvkbd/vkbd.h
index 7cec2d0..abdf934 100644
--- a/src/xenvkbd/vkbd.h
+++ b/src/xenvkbd/vkbd.h
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
diff --git a/src/xenvkbd/xenvkbd.rc b/src/xenvkbd/xenvkbd.rc
index e198e27..3f2c9b7 100644
--- a/src/xenvkbd/xenvkbd.rc
+++ b/src/xenvkbd/xenvkbd.rc
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
-- 
2.39.0.windows.1




 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.