[Cluster-devel] Cluster Project branch, master, updated. cluster-2.99.04-39-g2a62bcc

fabbione at sourceware.org fabbione at sourceware.org
Fri Jun 20 05:45:30 UTC 2008


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=2a62bccc8a9ec72bcb6cb6c75583eb55d2af9433

The branch, master has been updated
       via  2a62bccc8a9ec72bcb6cb6c75583eb55d2af9433 (commit)
      from  cb690444146f443739976b8795407545666addb1 (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 2a62bccc8a9ec72bcb6cb6c75583eb55d2af9433
Author: Fabio M. Di Nitto <fdinitto at redhat.com>
Date:   Fri Jun 20 07:44:58 2008 +0200

    [CCS] Add cosmetic CCSENTER/EXIT for simple xml queries
    
    Signed-off-by: Fabio M. Di Nitto <fdinitto at redhat.com>

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

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

diff --git a/ccs/daemon/misc.c b/ccs/daemon/misc.c
index 167536f..13f5780 100644
--- a/ccs/daemon/misc.c
+++ b/ccs/daemon/misc.c
@@ -43,6 +43,8 @@ static char *do_simple_xml_query(xmlXPathContextPtr ctx, char *query) {
   xmlXPathObjectPtr  obj = NULL;
   xmlNodePtr        node = NULL;
 
+  CCSENTER("do_simple_xml_query");
+
   obj = xmlXPathEvalExpression((xmlChar *)query, ctx);
   if(!obj || !obj->nodesetval || (obj->nodesetval->nodeNr != 1))
     log_printf(LOG_DEBUG, "Error processing query: %s.\n", query);
@@ -53,14 +55,17 @@ static char *do_simple_xml_query(xmlXPathContextPtr ctx, char *query) {
     else {
       if(!node->children->content || !strlen((char *)node->children->content))
 	log_printf(LOG_DEBUG, "No content found.\n");
-      else
+      else {
+        CCSEXIT("do_simple_xml_query");
 	return strdup((char *)node->children->content);
+      }
     }
   }
 
   if(obj)
     xmlXPathFreeObject(obj);
 
+  CCSEXIT("do_simple_xml_query");
   return NULL;
 }
 


hooks/post-receive
--
Cluster Project




More information about the Cluster-devel mailing list