Browse Source

cleanup some shared datatypes

(Logical change 1.150)


git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@531 fd59a12c-fef9-0310-b244-a6a79926bd2f
Steven Dake 21 years ago
parent
commit
4129c94111
1 changed files with 2 additions and 2 deletions
  1. 2 2
      exec/parse.c

+ 2 - 2
exec/parse.c

@@ -423,7 +423,7 @@ extern int openais_main_config_read (char **error_string,
 	char *error_reason = error_string_response;
 
 	memset (openais_config, 0, sizeof (struct openais_config));
-	openais_config->interfaces = malloc (sizeof (struct totempg_interface) * interface_max);
+	openais_config->interfaces = malloc (sizeof (struct totem_interface) * interface_max);
 	if (openais_config->interfaces == 0) {
 		parse_done = 1;
 		*error_string = "Out of memory trying to allocate ethernet interface storage area";
@@ -431,7 +431,7 @@ extern int openais_main_config_read (char **error_string,
 	}
 
 	memset (openais_config->interfaces, 0,
-		sizeof (struct totempg_interface) * interface_max);
+		sizeof (struct totem_interface) * interface_max);
 
 	openais_config->mcast_addr.sin_family = AF_INET;
 	fp = fopen ("/etc/ais/openais.conf", "r");