summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Sommerseth <davids@redhat.com>2010-08-03 09:46:53 +0200
committerDavid Sommerseth <davids@redhat.com>2010-08-03 09:46:53 +0200
commite3e1befccf6da23b5330ae184831b7feac66fd3a (patch)
treee8ea0936cfb929930f487d0e2b4dd693142e96d2
parentbde89d48f32287e14120ddab6ab2650ea1ca0a5c (diff)
downloadpython-ethtool-e3e1befccf6da23b5330ae184831b7feac66fd3a.tar.gz
python-ethtool-e3e1befccf6da23b5330ae184831b7feac66fd3a.tar.xz
python-ethtool-e3e1befccf6da23b5330ae184831b7feac66fd3a.zip
Added missing copyright notifications and updated where needed
Signed-off-by: David Sommerseth <davids@redhat.com>
-rw-r--r--python-ethtool/etherinfo.c2
-rw-r--r--python-ethtool/etherinfo.h2
-rw-r--r--python-ethtool/etherinfo_ipv6_obj.c15
-rw-r--r--python-ethtool/etherinfo_obj.c16
-rw-r--r--python-ethtool/etherinfo_obj.h15
-rw-r--r--python-ethtool/etherinfo_struct.h15
-rw-r--r--python-ethtool/ethtool.c3
7 files changed, 65 insertions, 3 deletions
diff --git a/python-ethtool/etherinfo.c b/python-ethtool/etherinfo.c
index bfbe11d..4cb5bc1 100644
--- a/python-ethtool/etherinfo.c
+++ b/python-ethtool/etherinfo.c
@@ -1,6 +1,6 @@
/* etherinfo.c - Retrieve ethernet interface info via NETLINK
*
- * Copyright (C) 2009 Red Hat Inc.
+ * Copyright (C) 2009-2010 Red Hat Inc.
*
* David Sommerseth <davids@redhat.com>
* Parts of this code is based on ideas and solutions in iproute2
diff --git a/python-ethtool/etherinfo.h b/python-ethtool/etherinfo.h
index 7e79d67..833e4e8 100644
--- a/python-ethtool/etherinfo.h
+++ b/python-ethtool/etherinfo.h
@@ -1,6 +1,6 @@
/* etherinfo.h - Retrieve ethernet interface info via NETLINK
*
- * Copyright (C) 2009 Red Hat Inc.
+ * Copyright (C) 2009-2010 Red Hat Inc.
*
* David Sommerseth <davids@redhat.com>
*
diff --git a/python-ethtool/etherinfo_ipv6_obj.c b/python-ethtool/etherinfo_ipv6_obj.c
index c561cea..d6acc47 100644
--- a/python-ethtool/etherinfo_ipv6_obj.c
+++ b/python-ethtool/etherinfo_ipv6_obj.c
@@ -1,3 +1,18 @@
+/*
+ * Copyright (C) 2009-2010 Red Hat Inc.
+ *
+ * David Sommerseth <davids@redhat.com>
+ *
+ * This application is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; version 2.
+ *
+ * This application 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
+ * General Public License for more details.
+ */
+
/**
* @file etherinfo_ipv6_obj.c
* @author David Sommerseth <davids@redhat.com>
diff --git a/python-ethtool/etherinfo_obj.c b/python-ethtool/etherinfo_obj.c
index 384e915..45a590b 100644
--- a/python-ethtool/etherinfo_obj.c
+++ b/python-ethtool/etherinfo_obj.c
@@ -1,3 +1,19 @@
+/*
+ * Copyright (C) 2009-2010 Red Hat Inc.
+ *
+ * David Sommerseth <davids@redhat.com>
+ *
+ * This application is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; version 2.
+ *
+ * This application 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
+ * General Public License for more details.
+ */
+
+
/**
* @file etherinfo_obj.c
* @author David Sommerseth <davids@redhat.com>
diff --git a/python-ethtool/etherinfo_obj.h b/python-ethtool/etherinfo_obj.h
index ed63383..ce77f79 100644
--- a/python-ethtool/etherinfo_obj.h
+++ b/python-ethtool/etherinfo_obj.h
@@ -1,3 +1,18 @@
+/*
+ * Copyright (C) 2009-2010 Red Hat Inc.
+ *
+ * David Sommerseth <davids@redhat.com>
+ *
+ * This application is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; version 2.
+ *
+ * This application 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
+ * General Public License for more details.
+ */
+
/**
* @file etherinfo_obj.c
* @author David Sommerseth <davids@redhat.com>
diff --git a/python-ethtool/etherinfo_struct.h b/python-ethtool/etherinfo_struct.h
index ec242c6..d627ba6 100644
--- a/python-ethtool/etherinfo_struct.h
+++ b/python-ethtool/etherinfo_struct.h
@@ -1,3 +1,18 @@
+/*
+ * Copyright (C) 2009-2010 Red Hat Inc.
+ *
+ * David Sommerseth <davids@redhat.com>
+ *
+ * This application is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; version 2.
+ *
+ * This application 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
+ * General Public License for more details.
+ */
+
/**
* @file etherinfo_struct.h
* @author David Sommerseth <dsommers@wsdsommers.usersys.redhat.com>
diff --git a/python-ethtool/ethtool.c b/python-ethtool/ethtool.c
index 7115fb0..52e274f 100644
--- a/python-ethtool/ethtool.c
+++ b/python-ethtool/ethtool.c
@@ -1,7 +1,8 @@
/*
- * Copyright (C) 2008 Red Hat Inc.
+ * Copyright (C) 2008-2010 Red Hat Inc.
*
* Arnaldo Carvalho de Melo <acme@redhat.com>
+ * David Sommerseth <davids@redhat.com>
*
* First bits from a Red Hat config tool by Harald Hoyer.
*