summaryrefslogtreecommitdiff
path: root/libnm-util/nm-setting-bridge-port.c
diff options
context:
space:
mode:
Diffstat (limited to 'libnm-util/nm-setting-bridge-port.c')
-rw-r--r--libnm-util/nm-setting-bridge-port.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/libnm-util/nm-setting-bridge-port.c b/libnm-util/nm-setting-bridge-port.c
index 7430f36c2f..496de581ab 100644
--- a/libnm-util/nm-setting-bridge-port.c
+++ b/libnm-util/nm-setting-bridge-port.c
@@ -1,8 +1,6 @@
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
/*
- * Dan Williams <dcbw@redhat.com>
- *
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
@@ -18,7 +16,7 @@
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*
- * (C) Copyright 2012 - 2013 Red Hat, Inc.
+ * Copyright 2012 - 2013 Red Hat, Inc.
*/
#include <string.h>
@@ -266,7 +264,9 @@ nm_setting_bridge_port_class_init (NMSettingBridgePortClass *setting_class)
(object_class, PROP_PRIORITY,
g_param_spec_uint (NM_SETTING_BRIDGE_PORT_PRIORITY, "", "",
0, BR_MAX_PORT_PRIORITY, BR_DEF_PRIORITY,
- G_PARAM_READWRITE | G_PARAM_CONSTRUCT | NM_SETTING_PARAM_INFERRABLE |
+ G_PARAM_READWRITE |
+ G_PARAM_CONSTRUCT |
+ NM_SETTING_PARAM_INFERRABLE |
G_PARAM_STATIC_STRINGS));
/**
@@ -281,7 +281,9 @@ nm_setting_bridge_port_class_init (NMSettingBridgePortClass *setting_class)
(object_class, PROP_PATH_COST,
g_param_spec_uint (NM_SETTING_BRIDGE_PORT_PATH_COST, "", "",
0, BR_MAX_PATH_COST, 100,
- G_PARAM_READWRITE | G_PARAM_CONSTRUCT | NM_SETTING_PARAM_INFERRABLE |
+ G_PARAM_READWRITE |
+ G_PARAM_CONSTRUCT |
+ NM_SETTING_PARAM_INFERRABLE |
G_PARAM_STATIC_STRINGS));
/**
@@ -296,6 +298,7 @@ nm_setting_bridge_port_class_init (NMSettingBridgePortClass *setting_class)
(object_class, PROP_HAIRPIN_MODE,
g_param_spec_boolean (NM_SETTING_BRIDGE_PORT_HAIRPIN_MODE, "", "",
FALSE,
- G_PARAM_READWRITE | NM_SETTING_PARAM_INFERRABLE |
+ G_PARAM_READWRITE |
+ NM_SETTING_PARAM_INFERRABLE |
G_PARAM_STATIC_STRINGS));
}