Send Linux-ha-cvs mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.community.tummy.com/mailman/listinfo/linux-ha-cvs
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]
You can reach the person managing the list at
[EMAIL PROTECTED]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Linux-ha-cvs digest..."
Today's Topics:
1. Linux-HA CVS: fencing by davidlee from
([email protected])
----------------------------------------------------------------------
Message: 1
Date: Wed, 15 Mar 2006 10:13:20 -0700 (MST)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: fencing by davidlee from
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
linux-ha CVS committal
Author : davidlee
Host :
Project : linux-ha
Module : fencing
Dir : linux-ha/fencing/stonithd
Modified Files:
stonithd.c
Log Message:
Declarations must be at head, not in middle, of a block
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/fencing/stonithd/stonithd.c,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -3 -r1.84 -r1.85
--- stonithd.c 15 Mar 2006 03:12:10 -0000 1.84
+++ stonithd.c 15 Mar 2006 17:13:19 -0000 1.85
@@ -1,4 +1,4 @@
-/* $Id: stonithd.c,v 1.84 2006/03/15 03:12:10 sunjd Exp $ */
+/* $Id: stonithd.c,v 1.85 2006/03/15 17:13:19 davidlee Exp $ */
/* File: stonithd.c
* Description: STONITH daemon for node fencing
@@ -1334,6 +1334,7 @@
stonithd_IPC_destroy_notify(gpointer data)
{
IPC_Channel * ch = (IPC_Channel *) data;
+ GCHSource * tmp_gsrc = NULL;
/* deal with client disconnection event */
stonithd_log2(LOG_DEBUG, "An IPC is destroyed.");
@@ -1351,8 +1352,6 @@
"to delete a client from client_list, maybe it has "
"been deleted in signoff function.");
}
-
- GCHSource * tmp_gsrc = NULL;
if ( NULL != (tmp_gsrc = g_hash_table_lookup(chan_gsource_pairs, ch)) )
{
G_main_del_IPC_Channel(tmp_gsrc);
@@ -3362,6 +3361,9 @@
/*
* $Log: stonithd.c,v $
+ * Revision 1.85 2006/03/15 17:13:19 davidlee
+ * Declarations must be at head, not in middle, of a block
+ *
* Revision 1.84 2006/03/15 03:12:10 sunjd
* log output tweak
*
------------------------------
_______________________________________________
Linux-ha-cvs mailing list
[email protected]
http://lists.community.tummy.com/mailman/listinfo/linux-ha-cvs
End of Linux-ha-cvs Digest, Vol 28, Issue 30
********************************************