Fix capitalization of "InfiniBand"

"InfiniBand" has a capital "B". Fix that everywhere it's being used as
a human-readable string.

In particular, the RH initscripts recognize "TYPE=infiniband" and
"TYPE=InfiniBand", but not "TYPE=Infiniband", which is what we were
writing before.
This commit is contained in:
Dan Winship
2012-03-06 12:55:24 -05:00
parent 4fc8b8ccd0
commit 49214066a4
20 changed files with 49 additions and 49 deletions

View File

@@ -1431,14 +1431,14 @@ check_infiniband_compatible (NMDeviceInfiniband *device, NMConnection *connectio
connection_type = nm_setting_connection_get_connection_type (s_con);
if (strcmp (connection_type, NM_SETTING_INFINIBAND_SETTING_NAME)) {
g_set_error (error, 0, 0,
"The connection was not an Infiniband connection.");
"The connection was not an InfiniBand connection.");
return FALSE;
}
s_infiniband = nm_connection_get_setting_infiniband (connection);
if (!s_infiniband) {
g_set_error (error, 0, 0,
"The connection was not a valid Infiniband connection.");
"The connection was not a valid InfiniBand connection.");
return FALSE;
}