From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FaLwN-00055j-EL for qemu-devel@nongnu.org; Sun, 30 Apr 2006 20:07:03 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FaLwM-00055F-WC for qemu-devel@nongnu.org; Sun, 30 Apr 2006 20:07:03 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FaLwM-00054v-GM for qemu-devel@nongnu.org; Sun, 30 Apr 2006 20:07:02 -0400 Received: from [70.116.9.243] (helo=localhost.localdomain) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1FaM03-0004OZ-Ew for qemu-devel@nongnu.org; Sun, 30 Apr 2006 20:10:51 -0400 Message-ID: <445550FD.7050400@codemonkey.ws> Date: Sun, 30 Apr 2006 19:06:21 -0500 From: Anthony Liguori MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------040505010506080809090406" Subject: [Qemu-devel] [PATCH] Add copyright to VNC code Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fabrice Bellard Cc: qemu-devel@nongnu.org This is a multi-part message in MIME format. --------------040505010506080809090406 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi, I forgot to put a copyright in the VNC code :-) Please apply the attached patch. Regards, Anthony Liguori --------------040505010506080809090406 Content-Type: text/plain; name="qemu-vnc-copyright.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="qemu-vnc-copyright.diff" # HG changeset patch # User Anthony Liguori # Node ID a9314fc39a5e3d78d80d385f560c922c3ce0e82b # Parent 3d3e1931180246af269c8fc24d321536e3cd3096 Add copyright diff -r 3d3e19311802 -r a9314fc39a5e vnc.c --- a/vnc.c Mon May 01 04:54:18 2006 +0000 +++ b/vnc.c Sun Apr 30 19:04:17 2006 -0500 @@ -1,3 +1,28 @@ +/* + * QEMU VNC display driver + * + * Copyright (C) 2006 Anthony Liguori + * Copyright (C) 2006 Fabrice Bellard + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + #include "vl.h" #include "qemu_socket.h" --------------040505010506080809090406--