aboutsummaryrefslogtreecommitdiff
path: root/slirp
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2019-03-13 17:03:47 +0100
committerMarc-André Lureau <marcandre.lureau@redhat.com>2019-03-22 17:31:42 +0100
commit0c4cc4e2184831fecce64c1d734a1f754ea00cb4 (patch)
tree1860c638ddb2aec633319b5d679c700bce335b7c /slirp
parentdfacac4c819f57f3a3e11ef2114a86a5d68fb648 (diff)
downloadqemu-0c4cc4e2184831fecce64c1d734a1f754ea00cb4.zip
qemu-0c4cc4e2184831fecce64c1d734a1f754ea00cb4.tar.gz
qemu-0c4cc4e2184831fecce64c1d734a1f754ea00cb4.tar.bz2
slirp: remove reference to COPYRIGHT file
The slirp COPYRIGHT file is a BSD-3 license. Instead of referring to another project file, the SPDX license notice present in all source files states that unequivocally. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'slirp')
-rw-r--r--slirp/src/debug.h3
-rw-r--r--slirp/src/if.c3
-rw-r--r--slirp/src/if.h3
-rw-r--r--slirp/src/ip_input.c3
-rw-r--r--slirp/src/ip_output.c3
-rw-r--r--slirp/src/main.h3
-rw-r--r--slirp/src/mbuf.c3
-rw-r--r--slirp/src/misc.c3
-rw-r--r--slirp/src/misc.h3
-rw-r--r--slirp/src/sbuf.c3
-rw-r--r--slirp/src/sbuf.h3
-rw-r--r--slirp/src/socket.c3
-rw-r--r--slirp/src/socket.h3
-rw-r--r--slirp/src/tcp_input.c3
-rw-r--r--slirp/src/tcp_output.c3
-rw-r--r--slirp/src/tcp_subr.c3
16 files changed, 0 insertions, 48 deletions
diff --git a/slirp/src/debug.h b/slirp/src/debug.h
index 2e503ad..c95fd8f 100644
--- a/slirp/src/debug.h
+++ b/slirp/src/debug.h
@@ -1,9 +1,6 @@
/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 1995 Danny Gasparovski.
- *
- * Please read the file COPYRIGHT for the
- * terms and conditions of the copyright.
*/
#ifndef DEBUG_H_
diff --git a/slirp/src/if.c b/slirp/src/if.c
index b8cddeb..6eaac72 100644
--- a/slirp/src/if.c
+++ b/slirp/src/if.c
@@ -1,9 +1,6 @@
/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 1995 Danny Gasparovski.
- *
- * Please read the file COPYRIGHT for the
- * terms and conditions of the copyright.
*/
#include "slirp.h"
diff --git a/slirp/src/if.h b/slirp/src/if.h
index 8a60c4e..b71c37d 100644
--- a/slirp/src/if.h
+++ b/slirp/src/if.h
@@ -1,9 +1,6 @@
/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 1995 Danny Gasparovski.
- *
- * Please read the file COPYRIGHT for the
- * terms and conditions of the copyright.
*/
#ifndef IF_H
diff --git a/slirp/src/ip_input.c b/slirp/src/ip_input.c
index 6ad6765..a714fec 100644
--- a/slirp/src/ip_input.c
+++ b/slirp/src/ip_input.c
@@ -34,9 +34,6 @@
/*
* Changes and additions relating to SLiRP are
* Copyright (c) 1995 Danny Gasparovski.
- *
- * Please read the file COPYRIGHT for the
- * terms and conditions of the copyright.
*/
#include "slirp.h"
diff --git a/slirp/src/ip_output.c b/slirp/src/ip_output.c
index 9299997..8560197 100644
--- a/slirp/src/ip_output.c
+++ b/slirp/src/ip_output.c
@@ -34,9 +34,6 @@
/*
* Changes and additions relating to SLiRP are
* Copyright (c) 1995 Danny Gasparovski.
- *
- * Please read the file COPYRIGHT for the
- * terms and conditions of the copyright.
*/
#include "slirp.h"
diff --git a/slirp/src/main.h b/slirp/src/main.h
index a887742..3b3f883 100644
--- a/slirp/src/main.h
+++ b/slirp/src/main.h
@@ -1,9 +1,6 @@
/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 1995 Danny Gasparovski.
- *
- * Please read the file COPYRIGHT for the
- * terms and conditions of the copyright.
*/
#ifndef SLIRP_MAIN_H
diff --git a/slirp/src/mbuf.c b/slirp/src/mbuf.c
index f079a86..800406c 100644
--- a/slirp/src/mbuf.c
+++ b/slirp/src/mbuf.c
@@ -1,9 +1,6 @@
/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 1995 Danny Gasparovski
- *
- * Please read the file COPYRIGHT for the
- * terms and conditions of the copyright.
*/
/*
diff --git a/slirp/src/misc.c b/slirp/src/misc.c
index da41f3b..7c5db0e 100644
--- a/slirp/src/misc.c
+++ b/slirp/src/misc.c
@@ -1,9 +1,6 @@
/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 1995 Danny Gasparovski.
- *
- * Please read the file COPYRIGHT for the
- * terms and conditions of the copyright.
*/
#include "slirp.h"
diff --git a/slirp/src/misc.h b/slirp/src/misc.h
index 4eaa246..23b7490 100644
--- a/slirp/src/misc.h
+++ b/slirp/src/misc.h
@@ -1,9 +1,6 @@
/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 1995 Danny Gasparovski.
- *
- * Please read the file COPYRIGHT for the
- * terms and conditions of the copyright.
*/
#ifndef MISC_H
diff --git a/slirp/src/sbuf.c b/slirp/src/sbuf.c
index 815823f..9c0b31b 100644
--- a/slirp/src/sbuf.c
+++ b/slirp/src/sbuf.c
@@ -1,9 +1,6 @@
/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 1995 Danny Gasparovski.
- *
- * Please read the file COPYRIGHT for the
- * terms and conditions of the copyright.
*/
#include "slirp.h"
diff --git a/slirp/src/sbuf.h b/slirp/src/sbuf.h
index ece616e..337af1b 100644
--- a/slirp/src/sbuf.h
+++ b/slirp/src/sbuf.h
@@ -1,9 +1,6 @@
/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 1995 Danny Gasparovski.
- *
- * Please read the file COPYRIGHT for the
- * terms and conditions of the copyright.
*/
#ifndef SBUF_H
diff --git a/slirp/src/socket.c b/slirp/src/socket.c
index ad58262..4a3c935 100644
--- a/slirp/src/socket.c
+++ b/slirp/src/socket.c
@@ -1,9 +1,6 @@
/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 1995 Danny Gasparovski.
- *
- * Please read the file COPYRIGHT for the
- * terms and conditions of the copyright.
*/
#include "slirp.h"
diff --git a/slirp/src/socket.h b/slirp/src/socket.h
index 10a0c78..2540389 100644
--- a/slirp/src/socket.h
+++ b/slirp/src/socket.h
@@ -1,9 +1,6 @@
/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 1995 Danny Gasparovski.
- *
- * Please read the file COPYRIGHT for the
- * terms and conditions of the copyright.
*/
#ifndef SLIRP_SOCKET_H
diff --git a/slirp/src/tcp_input.c b/slirp/src/tcp_input.c
index cf54eee..50a1145 100644
--- a/slirp/src/tcp_input.c
+++ b/slirp/src/tcp_input.c
@@ -34,9 +34,6 @@
/*
* Changes and additions relating to SLiRP
* Copyright (c) 1995 Danny Gasparovski.
- *
- * Please read the file COPYRIGHT for the
- * terms and conditions of the copyright.
*/
#include "slirp.h"
diff --git a/slirp/src/tcp_output.c b/slirp/src/tcp_output.c
index 272c261..6bbaf6c 100644
--- a/slirp/src/tcp_output.c
+++ b/slirp/src/tcp_output.c
@@ -34,9 +34,6 @@
/*
* Changes and additions relating to SLiRP
* Copyright (c) 1995 Danny Gasparovski.
- *
- * Please read the file COPYRIGHT for the
- * terms and conditions of the copyright.
*/
#include "slirp.h"
diff --git a/slirp/src/tcp_subr.c b/slirp/src/tcp_subr.c
index 086e4e9..fde9207 100644
--- a/slirp/src/tcp_subr.c
+++ b/slirp/src/tcp_subr.c
@@ -34,9 +34,6 @@
/*
* Changes and additions relating to SLiRP
* Copyright (c) 1995 Danny Gasparovski.
- *
- * Please read the file COPYRIGHT for the
- * terms and conditions of the copyright.
*/
#include "slirp.h"