Browse Source

Remove extra unused parameter to exec messages.

(Logical change 1.22)


git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@60 fd59a12c-fef9-0310-b244-a6a79926bd2f
Steven Dake 21 years ago
parent
commit
bc5fe2a786
1 changed files with 2 additions and 2 deletions
  1. 2 2
      exec/handlers.h

+ 2 - 2
exec/handlers.h

@@ -37,9 +37,9 @@
 #include <netinet/in.h>
 
 struct service_handler {
-	int (**libais_handler_fns) (int fd, void *);
+	int (**libais_handler_fns) (int fd, void *msg);
 	int libais_handler_fns_count;
-	int (**aisexec_handler_fns) (int fd, void *);
+	int (**aisexec_handler_fns) (void *msg);
 	int aisexec_handler_fns_count;
 	int (*confchg_fn) (
 		struct sockaddr_in *member_list, int member_list_entries,