This is the mail archive of the cluster-cvs@sourceware.org mailing list for the cluster.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Cluster Project branch, master, updated. cluster-2.99.01-11-gdc0eb68


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cluster Project".

http://sources.redhat.com/git/gitweb.cgi?p=cluster.git;a=commitdiff;h=dc0eb68982a09f73568fd63e729fe171ac3c6943

The branch, master has been updated
       via  dc0eb68982a09f73568fd63e729fe171ac3c6943 (commit)
      from  61872df7226c92719ad984cc45d0bb126daf9441 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit dc0eb68982a09f73568fd63e729fe171ac3c6943
Author: Fabio M. Di Nitto <fdinitto@redhat.com>
Date:   Fri May 16 08:49:06 2008 +0200

    [CCS] Make a bunch of functions static
    
    Signed-off-by: Fabio M. Di Nitto <fdinitto@redhat.com>

-----------------------------------------------------------------------

Summary of changes:
 ccs/libccscompat/libccscompat.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/ccs/libccscompat/libccscompat.c b/ccs/libccscompat/libccscompat.c
index b9144a1..b21377b 100644
--- a/ccs/libccscompat/libccscompat.c
+++ b/ccs/libccscompat/libccscompat.c
@@ -117,7 +117,7 @@ static int setup_interface_ipv4(int *sp, int port){
 }
 
 
-int
+static int
 setup_interface_local(int *sp)
 {
   struct sockaddr_un sun;
@@ -280,7 +280,7 @@ static int do_request(char *buffer){
 *
 * Returns: >= 0 on success, < 0 on error
 */
-int _ccs_connect(const char *cluster_name, int flags){
+static int _ccs_connect(const char *cluster_name, int flags){
   int error = 0;
   char *buffer = NULL;
   comm_header_t *ch = NULL;
@@ -411,7 +411,7 @@ int ccs_disconnect(int desc){
  *
  * Returns: 0 on success, < 0 on failure
  */
-int _ccs_get(int desc, const char *query, char **rtn, int list){
+static int _ccs_get(int desc, const char *query, char **rtn, int list){
   int error = 0;
   char *buffer = NULL;
   comm_header_t *ch = NULL;


hooks/post-receive
--
Cluster Project


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]