From 24e50f7f6fe61bf33b3a42e63c3eda882f40b01c Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Mon, 3 Nov 2008 04:13:42 +0000 Subject: [PATCH] 2008-11-02 Dan Williams * Add license headers to everything in src/ git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@4247 4912f4e0-d625-0410-9fb7-b9a5a253dbdc --- ChangeLog | 4 ++++ src/NetworkManager.c | 6 +++--- src/NetworkManagerAP.c | 7 +++---- src/NetworkManagerAP.h | 6 +++--- src/NetworkManagerPolicy.c | 5 ++--- src/NetworkManagerPolicy.h | 6 +++--- src/NetworkManagerSystem.c | 9 +++------ src/NetworkManagerSystem.h | 5 ++--- src/NetworkManagerUtils.c | 8 +++----- src/NetworkManagerUtils.h | 6 +++--- src/nm-activation-request.c | 6 +++--- src/nm-activation-request.h | 5 ++--- src/nm-active-connection.c | 5 ++--- src/nm-active-connection.h | 5 ++--- src/nm-call-store.c | 20 +++++++++++++++++++ src/nm-call-store.h | 20 +++++++++++++++++++ src/nm-cdma-device.c | 19 ++++++++++++++++++ src/nm-cdma-device.h | 19 ++++++++++++++++++ src/nm-crash-logger.c | 5 ++--- src/nm-dbus-manager.c | 31 +++++++++++++++--------------- src/nm-dbus-manager.h | 20 +++++++++---------- src/nm-device-ethernet.c | 6 ++---- src/nm-device-ethernet.h | 6 ++---- src/nm-device-interface.c | 19 ++++++++++++++++++ src/nm-device-interface.h | 19 ++++++++++++++++++ src/nm-device-private.h | 6 +++--- src/nm-device-wifi.c | 6 ++---- src/nm-device-wifi.h | 6 ++---- src/nm-device.c | 5 ++--- src/nm-device.h | 6 +++--- src/nm-dhcp4-config.c | 6 +----- src/nm-dhcp4-config.h | 5 +---- src/nm-gsm-device.c | 19 ++++++++++++++++++ src/nm-gsm-device.h | 21 +++++++++++++++++++- src/nm-hal-manager.c | 21 +++++++++++++++++++- src/nm-hal-manager.h | 21 ++++++++++++++++++++ src/nm-hso-gsm-device.c | 18 +++++++++++++++++ src/nm-hso-gsm-device.h | 18 +++++++++++++++++ src/nm-ip4-config.c | 7 ++----- src/nm-ip4-config.h | 7 ++----- src/nm-logging.c | 6 +++--- src/nm-logging.h | 6 +++--- src/nm-manager.c | 21 +++++++++++++++++++- src/nm-manager.h | 21 ++++++++++++++++++++ src/nm-netlink-monitor.c | 24 ++++++++++++----------- src/nm-netlink-monitor.h | 14 ++++++++------ src/nm-netlink.c | 5 ++--- src/nm-netlink.h | 5 ++--- src/nm-properties-changed-signal.c | 21 +++++++++++++++++++- src/nm-properties-changed-signal.h | 21 +++++++++++++++++++- src/nm-serial-device.c | 19 ++++++++++++++++++ src/nm-serial-device.h | 21 +++++++++++++++++++- 52 files changed, 470 insertions(+), 153 deletions(-) diff --git a/ChangeLog b/ChangeLog index 76fed105f..f89e6ea79 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-11-02 Dan Williams + + * Add license headers to everything in src/ + 2008-11-02 Dan Williams * Tag 0.7.0-rc1 diff --git a/src/NetworkManager.c b/src/NetworkManager.c index 2770fa40c..2899f78f5 100644 --- a/src/NetworkManager.c +++ b/src/NetworkManager.c @@ -1,6 +1,5 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,7 +15,8 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2004 Red Hat, Inc. + * Copyright (C) 2004 - 2008 Red Hat, Inc. + * Copyright (C) 2005 - 2008 Novell, Inc. */ #ifdef HAVE_CONFIG_H diff --git a/src/NetworkManagerAP.c b/src/NetworkManagerAP.c index 3700d2ade..95d1eeff2 100644 --- a/src/NetworkManagerAP.c +++ b/src/NetworkManagerAP.c @@ -1,7 +1,5 @@ -/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,7 +15,8 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2004 Red Hat, Inc. + * Copyright (C) 2004 - 2008 Red Hat, Inc. + * Copyright (C) 2006 - 2008 Novell, Inc. */ #include "wireless-helper.h" diff --git a/src/NetworkManagerAP.h b/src/NetworkManagerAP.h index 0551e2081..4ad4fd783 100644 --- a/src/NetworkManagerAP.h +++ b/src/NetworkManagerAP.h @@ -1,6 +1,5 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,7 +15,8 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2004 Red Hat, Inc. + * Copyright (C) 2004 - 2008 Red Hat, Inc. + * Copyright (C) 2006 - 2008 Novell, Inc. */ #ifndef NM_ACCESS_POINT_H diff --git a/src/NetworkManagerPolicy.c b/src/NetworkManagerPolicy.c index 8116e86e5..45403a2a6 100644 --- a/src/NetworkManagerPolicy.c +++ b/src/NetworkManagerPolicy.c @@ -1,7 +1,5 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,7 +15,8 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2005 - 2008 Red Hat, Inc. + * Copyright (C) 2004 - 2008 Red Hat, Inc. + * Copyright (C) 2007 - 2008 Novell, Inc. */ #include diff --git a/src/NetworkManagerPolicy.h b/src/NetworkManagerPolicy.h index 5ab379f89..7d99613cc 100644 --- a/src/NetworkManagerPolicy.h +++ b/src/NetworkManagerPolicy.h @@ -1,6 +1,5 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,7 +15,8 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2004 Red Hat, Inc. + * Copyright (C) 2004 - 2008 Red Hat, Inc. + * Copyright (C) 2007 - 2008 Novell, Inc. */ #ifndef NETWORK_MANAGER_POLICY_H diff --git a/src/NetworkManagerSystem.c b/src/NetworkManagerSystem.c index 953c27eaa..d9775436e 100644 --- a/src/NetworkManagerSystem.c +++ b/src/NetworkManagerSystem.c @@ -1,8 +1,5 @@ -/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */ - +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,10 +15,10 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * Copyright (C) 2004 Red Hat, Inc. + * Copyright (C) 2004 - 2008 Red Hat, Inc. + * Copyright (C) 2005 - 2008 Novell, Inc. * Copyright (C) 1996 - 1997 Yoichi Hariguchi * Copyright (C) January, 1998 Sergei Viznyuk - * */ #include diff --git a/src/NetworkManagerSystem.h b/src/NetworkManagerSystem.h index a9d927686..cfa7ab5bc 100644 --- a/src/NetworkManagerSystem.h +++ b/src/NetworkManagerSystem.h @@ -1,7 +1,5 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,7 +15,8 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2004 Red Hat, Inc. + * Copyright (C) 2004 - 2008 Red Hat, Inc. + * Copyright (C) 2005 - 2008 Novell, Inc. */ #ifndef NETWORK_MANAGER_SYSTEM_H diff --git a/src/NetworkManagerUtils.c b/src/NetworkManagerUtils.c index 836cb32aa..28fe165fb 100644 --- a/src/NetworkManagerUtils.c +++ b/src/NetworkManagerUtils.c @@ -1,8 +1,5 @@ -/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */ - +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,7 +15,8 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2004 Red Hat, Inc. + * Copyright (C) 2004 - 2008 Red Hat, Inc. + * Copyright (C) 2005 - 2008 Novell, Inc. */ #include diff --git a/src/NetworkManagerUtils.h b/src/NetworkManagerUtils.h index 82f68b72b..f408c69bd 100644 --- a/src/NetworkManagerUtils.h +++ b/src/NetworkManagerUtils.h @@ -1,6 +1,5 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,7 +15,8 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2004 Red Hat, Inc. + * Copyright (C) 2004 - 2008 Red Hat, Inc. + * Copyright (C) 2005 - 2008 Novell, Inc. */ #ifndef NETWORK_MANAGER_UTILS_H diff --git a/src/nm-activation-request.c b/src/nm-activation-request.c index 4e21fba74..454fa9af1 100644 --- a/src/nm-activation-request.c +++ b/src/nm-activation-request.c @@ -1,6 +1,5 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,7 +15,8 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2005 Red Hat, Inc. + * Copyright (C) 2005 - 2008 Red Hat, Inc. + * Copyright (C) 2007 - 2008 Novell, Inc. */ #include diff --git a/src/nm-activation-request.h b/src/nm-activation-request.h index 44dc297f8..3f3d93aca 100644 --- a/src/nm-activation-request.h +++ b/src/nm-activation-request.h @@ -1,6 +1,5 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,7 +15,7 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2005 Red Hat, Inc. + * (C) Copyright 2005 - 2008 Red Hat, Inc. */ #ifndef NM_ACTIVATION_REQUEST_H diff --git a/src/nm-active-connection.c b/src/nm-active-connection.c index ddd09967d..019b5c3fc 100644 --- a/src/nm-active-connection.c +++ b/src/nm-active-connection.c @@ -1,6 +1,5 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,7 +15,7 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2008 Red Hat, Inc. + * Copyright (C) 2008 Red Hat, Inc. */ #include diff --git a/src/nm-active-connection.h b/src/nm-active-connection.h index 9b197add6..4a1f2e147 100644 --- a/src/nm-active-connection.h +++ b/src/nm-active-connection.h @@ -1,6 +1,5 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,7 +15,7 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2008 Red Hat, Inc. + * Copyright (C) 2008 Red Hat, Inc. */ #ifndef NM_ACTIVE_CONNECTION_H diff --git a/src/nm-call-store.c b/src/nm-call-store.c index fa8db6400..57145fa27 100644 --- a/src/nm-call-store.c +++ b/src/nm-call-store.c @@ -1,3 +1,23 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This program 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; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Copyright (C) 2007 Novell, Inc. + */ + #include "nm-call-store.h" #include "nm-utils.h" diff --git a/src/nm-call-store.h b/src/nm-call-store.h index a4574cbff..0ae5a769b 100644 --- a/src/nm-call-store.h +++ b/src/nm-call-store.h @@ -1,3 +1,23 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This program 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; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * (C) Copyright 2007 Novell, Inc. + */ + #ifndef NM_CALLBACK_STORE_H #define NM_CALLBACK_STORE_H diff --git a/src/nm-cdma-device.c b/src/nm-cdma-device.c index 628a9b7e1..c1c9b06b7 100644 --- a/src/nm-cdma-device.c +++ b/src/nm-cdma-device.c @@ -1,4 +1,23 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This program 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; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Copyright (C) 2008 Red Hat, Inc. + * Copyright (C) 2008 Novell, Inc. + */ #include #include diff --git a/src/nm-cdma-device.h b/src/nm-cdma-device.h index eef2aba5d..50c44a3ed 100644 --- a/src/nm-cdma-device.h +++ b/src/nm-cdma-device.h @@ -1,4 +1,23 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This program 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; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Copyright (C) 2008 Red Hat, Inc. + * Copyright (C) 2008 Novell, Inc. + */ #ifndef NM_CDMA_DEVICE_H #define NM_CDMA_DEVICE_H diff --git a/src/nm-crash-logger.c b/src/nm-crash-logger.c index b5ec2bba1..9ad0412df 100644 --- a/src/nm-crash-logger.c +++ b/src/nm-crash-logger.c @@ -1,6 +1,5 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,7 +15,7 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2006 Red Hat, Inc. + * Copyright (C) 2006 - 2008 Red Hat, Inc. */ diff --git a/src/nm-dbus-manager.c b/src/nm-dbus-manager.c index b0904b862..a138447d8 100644 --- a/src/nm-dbus-manager.c +++ b/src/nm-dbus-manager.c @@ -1,23 +1,22 @@ -/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */ -/* - * Copyright (C) 2006 Red Hat, Inc. +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager * - * Written by Dan Williams + * This program 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; either version 2 of the License, or + * (at your option) any later version. * - * This program 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; either version 2 of the License, or - * (at your option) any later version. + * This program 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. * - * This program 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. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * + * Copyright (C) 2006 - 2008 Red Hat, Inc. + * Copyright (C) 2006 - 2008 Novell, Inc. */ #include "config.h" diff --git a/src/nm-dbus-manager.h b/src/nm-dbus-manager.h index dae116768..953ecb5a8 100644 --- a/src/nm-dbus-manager.h +++ b/src/nm-dbus-manager.h @@ -1,22 +1,22 @@ -/* - * Copyright (C) 2006 Red Hat, Inc. +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager * - * Written by Dan Williams - * - * This program 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; either version 2 of the - * License, or (at your option) any later version. + * This program 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; either version 2 of the License, or + * (at your option) any later version. * * This program 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * + * Copyright (C) 2006 - 2008 Red Hat, Inc. + * Copyright (C) 2006 - 2008 Novell, Inc. */ #ifndef __NM_DBUS_MANAGER_H__ diff --git a/src/nm-device-ethernet.c b/src/nm-device-ethernet.c index 2cfd02128..d62f3f3d1 100644 --- a/src/nm-device-ethernet.c +++ b/src/nm-device-ethernet.c @@ -1,8 +1,5 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ - /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,7 +15,8 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2005 - 2008 Red Hat, Inc. + * Copyright (C) 2005 - 2008 Red Hat, Inc. + * Copyright (C) 2006 - 2008 Novell, Inc. */ #include diff --git a/src/nm-device-ethernet.h b/src/nm-device-ethernet.h index f88f2d3d0..608224ddc 100644 --- a/src/nm-device-ethernet.h +++ b/src/nm-device-ethernet.h @@ -1,8 +1,5 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ - /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,7 +15,8 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2005 Red Hat, Inc. + * Copyright (C) 2005 - 2008 Red Hat, Inc. + * Copyright (C) 2006 - 2008 Novell, Inc. */ #ifndef NM_DEVICE_ETHERNET_H diff --git a/src/nm-device-interface.c b/src/nm-device-interface.c index 2cd41dea7..6d45ca905 100644 --- a/src/nm-device-interface.c +++ b/src/nm-device-interface.c @@ -1,4 +1,23 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This program 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; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Copyright (C) 2007 - 2008 Novell, Inc. + * Copyright (C) 2007 - 2008 Red Hat, Inc. + */ #include "nm-marshal.h" #include "nm-setting-connection.h" diff --git a/src/nm-device-interface.h b/src/nm-device-interface.h index f18a11d2a..b1f56db21 100644 --- a/src/nm-device-interface.h +++ b/src/nm-device-interface.h @@ -1,4 +1,23 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This program 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; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Copyright (C) 2007 - 2008 Novell, Inc. + * Copyright (C) 2007 - 2008 Red Hat, Inc. + */ #ifndef NM_DEVICE_INTERFACE_H #define NM_DEVICE_INTERFACE_H diff --git a/src/nm-device-private.h b/src/nm-device-private.h index 97c8bff68..2b625278d 100644 --- a/src/nm-device-private.h +++ b/src/nm-device-private.h @@ -1,6 +1,5 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,7 +15,8 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2005 Red Hat, Inc. + * Copyright (C) 2007 - 2008 Novell, Inc. + * Copyright (C) 2007 - 2008 Red Hat, Inc. */ #ifndef NM_DEVICE_PRIVATE_H diff --git a/src/nm-device-wifi.c b/src/nm-device-wifi.c index 7f9f64148..d7cc2f399 100644 --- a/src/nm-device-wifi.c +++ b/src/nm-device-wifi.c @@ -1,7 +1,5 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,8 +15,8 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2005 - 2008 Red Hat, Inc. - * (C) Copyright 2007 - 2008 Novell, Inc. + * Copyright (C) 2005 - 2008 Red Hat, Inc. + * Copyright (C) 2006 - 2008 Novell, Inc. */ #include diff --git a/src/nm-device-wifi.h b/src/nm-device-wifi.h index 3ee5641fc..1e885cb03 100644 --- a/src/nm-device-wifi.h +++ b/src/nm-device-wifi.h @@ -1,8 +1,5 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ - /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,7 +15,8 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2005 Red Hat, Inc. + * Copyright (C) 2005 - 2008 Red Hat, Inc. + * Copyright (C) 2006 - 2008 Novell, Inc. */ #ifndef NM_DEVICE_WIFI_H diff --git a/src/nm-device.c b/src/nm-device.c index 9794ab7a9..3f8e8b3b1 100644 --- a/src/nm-device.c +++ b/src/nm-device.c @@ -1,7 +1,5 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,7 +15,8 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2005 - 2008 Red Hat, Inc. + * Copyright (C) 2005 - 2008 Red Hat, Inc. + * Copyright (C) 2006 - 2008 Novell, Inc. */ #include diff --git a/src/nm-device.h b/src/nm-device.h index 99fdb8655..305af73bb 100644 --- a/src/nm-device.h +++ b/src/nm-device.h @@ -1,6 +1,5 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,7 +15,8 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2005 Red Hat, Inc. + * Copyright (C) 2005 - 2008 Red Hat, Inc. + * Copyright (C) 2006 - 2008 Novell, Inc. */ #ifndef NM_DEVICE_H diff --git a/src/nm-dhcp4-config.c b/src/nm-dhcp4-config.c index 2d5e23c97..7e7e585a8 100644 --- a/src/nm-dhcp4-config.c +++ b/src/nm-dhcp4-config.c @@ -1,8 +1,5 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ - /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,10 +15,9 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2008 Red Hat, Inc. + * Copyright (C) 2008 Red Hat, Inc. */ - #include #include diff --git a/src/nm-dhcp4-config.h b/src/nm-dhcp4-config.h index dbe716a5c..9a9744564 100644 --- a/src/nm-dhcp4-config.h +++ b/src/nm-dhcp4-config.h @@ -1,8 +1,5 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ - /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,7 +15,7 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2008 Red Hat, Inc. + * Copyright (C) 2008 Red Hat, Inc. */ #ifndef NM_DHCP4_CONFIG_H diff --git a/src/nm-gsm-device.c b/src/nm-gsm-device.c index e7fb448c0..e01a47753 100644 --- a/src/nm-gsm-device.c +++ b/src/nm-gsm-device.c @@ -1,4 +1,23 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This program 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; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Copyright (C) 2007 - 2008 Novell, Inc. + * Copyright (C) 2007 - 2008 Red Hat, Inc. + */ #include #include diff --git a/src/nm-gsm-device.h b/src/nm-gsm-device.h index 5dbd1306d..c9d05d7b0 100644 --- a/src/nm-gsm-device.h +++ b/src/nm-gsm-device.h @@ -1,4 +1,23 @@ -/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This program 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; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Copyright (C) 2007 - 2008 Novell, Inc. + * Copyright (C) 2007 - 2008 Red Hat, Inc. + */ #ifndef NM_GSM_DEVICE_H #define NM_GSM_DEVICE_H diff --git a/src/nm-hal-manager.c b/src/nm-hal-manager.c index 32cb70590..2a97e5969 100644 --- a/src/nm-hal-manager.c +++ b/src/nm-hal-manager.c @@ -1,4 +1,23 @@ -/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This program 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; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Copyright (C) 2007 - 2008 Novell, Inc. + * Copyright (C) 2007 - 2008 Red Hat, Inc. + */ #include #include diff --git a/src/nm-hal-manager.h b/src/nm-hal-manager.h index 63b43435a..d2203a20a 100644 --- a/src/nm-hal-manager.h +++ b/src/nm-hal-manager.h @@ -1,3 +1,24 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This program 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; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Copyright (C) 2007 - 2008 Novell, Inc. + * Copyright (C) 2007 - 2008 Red Hat, Inc. + */ + #ifndef NM_HAL_MANAGER_H #define NM_HAL_MANAGER_H diff --git a/src/nm-hso-gsm-device.c b/src/nm-hso-gsm-device.c index 7fedbd6db..c42858eed 100644 --- a/src/nm-hso-gsm-device.c +++ b/src/nm-hso-gsm-device.c @@ -1,4 +1,22 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This program 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; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Copyright (C) 2008 Red Hat, Inc. + */ #include #include diff --git a/src/nm-hso-gsm-device.h b/src/nm-hso-gsm-device.h index a7498c839..5b6b48ac6 100644 --- a/src/nm-hso-gsm-device.h +++ b/src/nm-hso-gsm-device.h @@ -1,4 +1,22 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This program 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; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Copyright (C) 2008 Red Hat, Inc. + */ #ifndef NM_HSO_GSM_DEVICE_H #define NM_HSO_GSM_DEVICE_H diff --git a/src/nm-ip4-config.c b/src/nm-ip4-config.c index 07262c3b6..bf579657e 100644 --- a/src/nm-ip4-config.c +++ b/src/nm-ip4-config.c @@ -1,8 +1,5 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ - /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,10 +15,10 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2005 - 2008 Red Hat, Inc. + * Copyright (C) 2005 - 2008 Red Hat, Inc. + * Copyright (C) 2006 - 2008 Novell, Inc. */ - #include #include #include diff --git a/src/nm-ip4-config.h b/src/nm-ip4-config.h index 1c96df1d5..61ed91d04 100644 --- a/src/nm-ip4-config.h +++ b/src/nm-ip4-config.h @@ -1,8 +1,5 @@ -/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */ - +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,7 +15,7 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2004 - 2008 Red Hat, Inc. + * Copyright (C) 2008 Red Hat, Inc. */ #ifndef NM_IP4_CONFIG_H diff --git a/src/nm-logging.c b/src/nm-logging.c index cd098f6ea..a38062039 100644 --- a/src/nm-logging.c +++ b/src/nm-logging.c @@ -1,6 +1,5 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,7 +15,8 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2006 Red Hat, Inc. + * Copyright (C) 2006 - 2008 Red Hat, Inc. + * Copyright (C) 2006 - 2008 Novell, Inc. */ #include diff --git a/src/nm-logging.h b/src/nm-logging.h index b0667da49..70979fa3a 100644 --- a/src/nm-logging.h +++ b/src/nm-logging.h @@ -1,6 +1,5 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,7 +15,8 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2006 Red Hat, Inc. + * Copyright (C) 2006 - 2008 Red Hat, Inc. + * Copyright (C) 2006 - 2008 Novell, Inc. */ #ifndef NM_LOGGING_H diff --git a/src/nm-manager.c b/src/nm-manager.c index def60e193..5fc14ff7a 100644 --- a/src/nm-manager.c +++ b/src/nm-manager.c @@ -1,4 +1,23 @@ -/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This program 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; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Copyright (C) 2007 - 2008 Novell, Inc. + * Copyright (C) 2007 - 2008 Red Hat, Inc. + */ #include #include diff --git a/src/nm-manager.h b/src/nm-manager.h index 84dd13ee5..3b87e8dd4 100644 --- a/src/nm-manager.h +++ b/src/nm-manager.h @@ -1,3 +1,24 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This program 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; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Copyright (C) 2007 - 2008 Novell, Inc. + * Copyright (C) 2007 - 2008 Red Hat, Inc. + */ + #ifndef NM_MANAGER_H #define NM_MANAGER_H 1 diff --git a/src/nm-netlink-monitor.c b/src/nm-netlink-monitor.c index 6f1246c06..3041e981d 100644 --- a/src/nm-netlink-monitor.c +++ b/src/nm-netlink-monitor.c @@ -1,17 +1,10 @@ -/* nm-netlink-monitor.c - Monitor netlink socket for interface change - * events - * - * Copyright (C) 2005 Ray Strode - * - * Some code borrowed from HAL: - - * Copyright (C) 2003 David Zeuthen, - * Copyright (C) 2004 Novell, Inc. +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager * * This program 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; either version 2, or (at your option) - * any later version. + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -22,7 +15,16 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * + * Copyright (C) 2005 - 2008 Red Hat, Inc. + * Copyright (C) 2005 - 2008 Novell, Inc. + * Copyright (C) 2005 Ray Strode + * + * Some code borrowed from HAL: + * + * Copyright (C) 2003 David Zeuthen, + * Copyright (C) 2004 Novell, Inc. */ + #include #include #include diff --git a/src/nm-netlink-monitor.h b/src/nm-netlink-monitor.h index a74b763a0..c5576310e 100644 --- a/src/nm-netlink-monitor.h +++ b/src/nm-netlink-monitor.h @@ -1,12 +1,10 @@ -/* nm-netlink-monitor.h - monitor netlink socket for network - * interface eventss - * - * Copyright (C) 2005 Ray Strode +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager * * This program 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; either version 2, or (at your option) - * any later version. + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -17,7 +15,11 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * + * Copyright (C) 2005 - 2008 Red Hat, Inc. + * Copyright (C) 2005 - 2008 Novell, Inc. + * Copyright (C) 2005 Ray Strode */ + #ifndef NM_NETLINK_MONITOR_H #define NM_NETLINK_MONITOR_H diff --git a/src/nm-netlink.c b/src/nm-netlink.c index aa8d20d30..643b3632a 100644 --- a/src/nm-netlink.c +++ b/src/nm-netlink.c @@ -1,6 +1,5 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,7 +15,7 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2007 Red Hat, Inc. + * Copyright (C) 2007 - 2008 Red Hat, Inc. */ #include "nm-netlink.h" diff --git a/src/nm-netlink.h b/src/nm-netlink.h index d2dc2d984..7b5e1ba57 100644 --- a/src/nm-netlink.h +++ b/src/nm-netlink.h @@ -1,6 +1,5 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager - * - * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,7 +15,7 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (C) Copyright 2007 Red Hat, Inc. + * Copyright (C) 2007 - 2008 Red Hat, Inc. */ #ifndef NM_NETLINK_H diff --git a/src/nm-properties-changed-signal.c b/src/nm-properties-changed-signal.c index 2dcfc5038..8d6c3a4a2 100644 --- a/src/nm-properties-changed-signal.c +++ b/src/nm-properties-changed-signal.c @@ -1,4 +1,23 @@ -/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This program 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; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Copyright (C) 2007 - 2008 Novell, Inc. + * Copyright (C) 2008 Red Hat, Inc. + */ #include #include diff --git a/src/nm-properties-changed-signal.h b/src/nm-properties-changed-signal.h index 9ae342b96..b87e34e18 100644 --- a/src/nm-properties-changed-signal.h +++ b/src/nm-properties-changed-signal.h @@ -1,4 +1,23 @@ -/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This program 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; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Copyright (C) 2007 - 2008 Novell, Inc. + * Copyright (C) 2008 Red Hat, Inc. + */ #ifndef _NM_PROPERTIES_CHANGED_SIGNAL_H_ #define _NM_PROPERTIES_CHANGED_SIGNAL_H_ diff --git a/src/nm-serial-device.c b/src/nm-serial-device.c index eeea3b755..184c67c6f 100644 --- a/src/nm-serial-device.c +++ b/src/nm-serial-device.c @@ -1,4 +1,23 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This program 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; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Copyright (C) 2007 - 2008 Novell, Inc. + * Copyright (C) 2007 - 2008 Red Hat, Inc. + */ #define _GNU_SOURCE /* for strcasestr() */ diff --git a/src/nm-serial-device.h b/src/nm-serial-device.h index 024b2e8b5..6e9b53bef 100644 --- a/src/nm-serial-device.h +++ b/src/nm-serial-device.h @@ -1,4 +1,23 @@ -/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ +/* NetworkManager -- Network link manager + * + * This program 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; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Copyright (C) 2007 - 2008 Novell, Inc. + * Copyright (C) 2007 - 2008 Red Hat, Inc. + */ #ifndef NM_SERIAL_DEVICE_H #define NM_SERIAL_DEVICE_H